mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
13 lines
164 B
Go
13 lines
164 B
Go
package main
|
|
|
|
import (
|
|
"glc/conf"
|
|
"glc/onstart"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(conf.GetGoMaxProcess()) // 使用最大CPU数量
|
|
onstart.Run()
|
|
}
|