This commit is contained in:
aozhiwei 2024-02-12 09:54:32 +08:00
parent afdce6f3f4
commit 98a8e1363b
2 changed files with 12 additions and 5 deletions

View File

@ -1,5 +0,0 @@
package controller
func init() {
}

View File

@ -0,0 +1,12 @@
package controller
import (
"main/constant"
"main/global"
)
var _controllerMgr = new(ControllerMgr)
func init() {
global.RegModule(constant.CONTROLLER_MGR_MODULE_IDX, _controllerMgr)
}