enterprise/cmd/enterprise.go

22 lines
301 B
Go
Raw Permalink Normal View History

2023-08-04 11:13:41 +08:00
package main
import (
"enterprise/common/config"
"enterprise/common/global"
"enterprise/server"
"enterprise/worker"
)
2024-01-31 21:02:49 +08:00
func main() {
2023-08-04 11:13:41 +08:00
config.LoadServerConfig()
global.InitGlobal()
2023-09-04 22:21:04 +08:00
if err := worker.Init(); err != nil {
panic(err)
}
2023-08-04 11:13:41 +08:00
if err := server.Start(); err != nil {
panic(err)
}
}