Example #1
0
func main() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	commands.Execute()

	if jww.LogCountForLevelsGreaterThanorEqualTo(jww.LevelError) > 0 {
		os.Exit(-1)
	}
}
Example #2
0
func main() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	commands.Execute()
}
Example #3
0
File: main.go Project: 4honor/hugo
func main() {
	commands.Execute()
}
Example #4
0
File: api.go Project: hacdias/hugo
func Run(flags []string) {
	commands.Execute(flags)
}