This commit is contained in:
aozhiwei 2023-10-01 09:28:13 +08:00
parent 507e4efe39
commit 910e7417d6
2 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,12 @@
package router package router
func init() { import (
"main/constant"
"main/global"
)
var _routerMgr = new(routerMgr)
func init() {
global.RegModule(constant.ROUTER_MODULE_IDX, _routerMgr)
} }

View File

@ -0,0 +1,14 @@
package router
type routerMgr struct {
}
func (this* routerMgr) Init() {
}
func (this* routerMgr) UnInit() {
}