aozhiwei cfdf663d3d 1
2024-05-26 13:14:33 +08:00

24 lines
298 B
Go

package router
import (
"f5"
"main/router/ca"
)
type routerMgr struct {
ca ca.RouterGroup
}
func (this *routerMgr) Init() {
/*
f5.GetApp().GetGinEngine().Use(middleware.Cors())
*/
this.ca.InitGameLogRouter()
f5.GetSysLog().Info("routerMgr.init")
}
func (this *routerMgr) UnInit() {
}