1
This commit is contained in:
parent
ffe69ce97a
commit
3f8b508182
@ -227,3 +227,9 @@ func (this *InGameApi) newHeroMint(c *gin.Context) {
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
func (this *InGameApi) GetCircuitRanking(c *gin.Context) {
|
||||
}
|
||||
|
||||
func (this *InGameApi) GetCircuitPhaseRanking(c *gin.Context) {
|
||||
}
|
||||
|
@ -16,4 +16,10 @@ func (this *IngameRouter) InitRouter() {
|
||||
f5.GetApp().GetGinEngine().POST("/api/ingame/asset/hero/mint",
|
||||
middleware.JwtAuth,
|
||||
api.InGameApi.HeroMint)
|
||||
f5.GetApp().GetGinEngine().GET("/api/circuit_ranking",
|
||||
middleware.MaybeJwtAuth,
|
||||
api.InGameApi.GetCircuitRanking)
|
||||
f5.GetApp().GetGinEngine().GET("/api/circuit_phase_ranking",
|
||||
middleware.MaybeJwtAuth,
|
||||
api.InGameApi.GetCircuitPhaseRanking)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user