Files
starter/main.go

15 lines
263 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
"github.com/limitcool/starter/cmd"
"go.uber.org/automaxprocs/maxprocs"
)
func main() {
// 静默设置 GOMAXPROCS不输出日志
_, _ = maxprocs.Set(maxprocs.Logger(func(string, ...any) {}))
// 执行根命令
cmd.ExecuteCmd()
}