package main import ( "runtime" "apjournal/cmd" ) func init() { runtime.GOMAXPROCS(runtime.NumCPU()) } func main() { cmd.Execute() }