mirror of
https://github.com/limitcool/starter.git
synced 2025-09-26 20:31:25 +08:00
15 lines
263 B
Go
15 lines
263 B
Go
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()
|
||
}
|