Set GOMAXPROCS to NumCPU, drop httprouter

This commit is contained in:
Ken-Håvard Lieng
2015-06-07 01:18:26 +02:00
parent ebdb382706
commit 7d17b4b30f
12 changed files with 18 additions and 2461 deletions

View File

@ -1,9 +1,12 @@
package main
import (
"runtime"
"github.com/khlieng/name_pending/commands"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
commands.Execute()
}