This commit is contained in:
aozhiwei 2024-03-23 15:23:58 +08:00
parent f0e78f8970
commit 630042d758

View File

@ -0,0 +1,14 @@
package listener
import (
"main/constant"
"main/global"
)
var _wspListener = new(WSPListener)
var _handlerMgr = new(HandlerMgr)
func init() {
global.RegModule(constant.WSPLISTENER_MODULE_IDX, _wspListener)
global.RegModule(constant.HANDLER_MGR_MODULE_IDX, _handlerMgr)
}