diff --git a/server/marketserver/router/routermgr.go b/server/marketserver/router/routermgr.go index 273d978e..13d63642 100644 --- a/server/marketserver/router/routermgr.go +++ b/server/marketserver/router/routermgr.go @@ -10,6 +10,8 @@ import ( "main/router/shopcart" "main/router/nft" "main/router/ingame" + "main/router/user" + "main/router/activity" ) type routerMgr struct { @@ -20,6 +22,8 @@ type routerMgr struct { shopCart shopcart.RouterGroup nft nft.RouterGroup ingame ingame.RouterGroup + user user.RouterGroup + activity activity.RouterGroup } func (this *routerMgr) Init() { @@ -31,6 +35,8 @@ func (this *routerMgr) Init() { this.shopCart.ShopCartRouter.InitRouter() this.nft.NftRouter.InitRouter() this.ingame.IngameRouter.InitRouter() + this.user.UserRouter.InitRouter() + this.activity.StackingRouter.InitRouter() f5.GetSysLog().Info("routerMgr.init")