enterprise/cmd/enterprise.go

31 lines
485 B
Go
Raw 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-14 21:24:17 +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)
}
}
2023-08-08 23:54:30 +08:00
2024-01-14 21:24:17 +08:00
func main22() {
2023-08-08 23:54:30 +08:00
config.LoadServerConfig()
2024-01-07 17:17:33 +08:00
global.InitGlobal()
//cfg := config.GetConfig()
2024-01-14 21:21:23 +08:00
2024-01-22 23:21:37 +08:00
//new(worker.Checkin).SyncCheckinDay("2024-01-17")
new(worker.Staff).SyncStaffInfo()
2023-08-08 23:54:30 +08:00
}