diff --git a/.goxc.json b/.goxc.json index bdf6dbe..f6b9c53 100644 --- a/.goxc.json +++ b/.goxc.json @@ -9,7 +9,7 @@ ], "Arch": "386 amd64", "Os": "linux darwin windows freebsd", - "PackageVersion": "0.1.1", + "PackageVersion": "0.1.2", "TaskSettings": { "deb": { "armarch": "", diff --git a/moxy.go b/moxy.go index 28a8630..d96bad2 100644 --- a/moxy.go +++ b/moxy.go @@ -7,7 +7,6 @@ import ( "io/ioutil" "log" "net/http" - "runtime" "strings" "sync" @@ -87,7 +86,6 @@ func moxy_apps(w http.ResponseWriter, r *http.Request) { } func main() { - runtime.GOMAXPROCS(runtime.NumCPU()) configtoml := flag.String("f", "moxy.toml", "Path to config. (default moxy.toml)") flag.Parse() file, err := ioutil.ReadFile(*configtoml)