dispatch/main.go

13 lines
152 B
Go
Raw Normal View History

2015-01-17 01:37:21 +00:00
package main
import (
"runtime"
2015-12-11 03:35:48 +00:00
"github.com/khlieng/dispatch/commands"
2015-01-17 01:37:21 +00:00
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
commands.Execute()
2015-01-17 01:37:21 +00:00
}