mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
ae275c9e60
Fixes #176
17 lines
208 B
Go
17 lines
208 B
Go
package main
|
|
|
|
import (
|
|
fmtlog "log"
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
if err := traefikCmd.Execute(); err != nil {
|
|
fmtlog.Println(err)
|
|
os.Exit(-1)
|
|
}
|
|
os.Exit(0)
|
|
}
|