glogcenter/glc/main.go
2022-11-29 15:37:29 +08:00

13 lines
164 B
Go

package main
import (
"glc/conf"
"glc/onstart"
"runtime"
)
func main() {
runtime.GOMAXPROCS(conf.GetGoMaxProcess()) // 使用最大CPU数量
onstart.Run()
}