24 lines
298 B
Go
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() {
|
|
|
|
}
|