2015-01-17 01:37:21 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-06-06 23:18:26 +00:00
|
|
|
"runtime"
|
|
|
|
|
2015-05-01 20:59:46 +00:00
|
|
|
"github.com/khlieng/name_pending/commands"
|
2015-01-17 01:37:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2015-06-06 23:18:26 +00:00
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
2015-05-01 20:59:46 +00:00
|
|
|
commands.Execute()
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|