This commit is contained in:
aozhiwei 2024-07-16 19:45:09 +08:00
parent 47566049ec
commit 78462ed1a1
3 changed files with 7 additions and 3 deletions

View File

@ -64,6 +64,7 @@ func (this *InGameApi) HeroList(c *gin.Context) {
func (row interface{}) {
q5.AppendSlice(&rspObj.Rows, row)
})
c.JSON(200, rspObj)
}
func (this *InGameApi) HeroMint(c *gin.Context) {

View File

@ -8,7 +8,7 @@ import (
type IngameRouter struct{}
func (this *IngameRouter) InitRouter() {
api := v1.ApiGroupApp.IngameApiGroup
f5.GetApp().GetGinEngine().GET("/api/ingame/asset/hero/list", api.IngameApi.HeroList)
f5.GetApp().GetGinEngine().POST("/api/ingame/asset/hero/mint", api.IngameApi.HeroMint)
api := v1.ApiGroupApp.InGameApiGroup
f5.GetApp().GetGinEngine().GET("/api/ingame/asset/hero/list", api.InGameApi.HeroList)
f5.GetApp().GetGinEngine().POST("/api/ingame/asset/hero/mint", api.InGameApi.HeroMint)
}

View File

@ -9,6 +9,7 @@ import (
"main/router/gold_bullion"
"main/router/shopcart"
"main/router/nft"
"main/router/ingame"
)
type routerMgr struct {
@ -18,6 +19,7 @@ type routerMgr struct {
goldBullion gold_bullion.RouterGroup
shopCart shopcart.RouterGroup
nft nft.RouterGroup
ingame ingame.RouterGroup
}
func (this *routerMgr) Init() {
@ -28,6 +30,7 @@ func (this *routerMgr) Init() {
this.goldBullion.GoldBullionRouter.InitRouter()
this.shopCart.ShopCartRouter.InitRouter()
this.nft.NftRouter.InitRouter()
this.ingame.IngameRouter.InitRouter()
f5.GetSysLog().Info("routerMgr.init")