This commit is contained in:
aozhiwei 2024-11-27 17:12:02 +08:00
parent 98587539d6
commit 0fb23f852f

View File

@ -13,6 +13,7 @@ import (
"main/router/bag"
"main/router/buff"
"main/router/gm"
"main/router/inapp_shop"
)
type routerMgr struct {
@ -26,6 +27,7 @@ type routerMgr struct {
bag bag.RouterGroup
buff buff.RouterGroup
gm gm.RouterGroup
inappShop inapp_shop.RouterGroup
}
func (this *routerMgr) Init() {
@ -40,6 +42,7 @@ func (this *routerMgr) Init() {
this.bag.BagRouter.InitRouter()
this.buff.BuffRouter.InitRouter()
this.gm.GMRouter.InitRouter()
this.inappShop.InAppShopRouter.InitRouter()
f5.GetSysLog().Info("routerMgr.init")