This commit is contained in:
aozhiwei 2024-08-13 16:41:21 +08:00
parent 411c670819
commit fd5d4f640f
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package activity
import (
"f5"
v1 "main/api/v1"
)
type BitGetRouter struct{}
func (this *BitGetRouter) InitRouter() {
api := v1.ApiGroupApp.ActivityApiGroup
f5.GetApp().GetGinEngine().GET("/api/activity/bitget/mission/newuser/progress",
api.BitGetApi.NewUserMission)
}

View File

@ -2,4 +2,5 @@ package activity
type RouterGroup struct {
StackingRouter
BitGetRouter
}

View File

@ -41,6 +41,7 @@ func (this *routerMgr) Init() {
this.ingame.IngameRouter.InitRouter()
this.user.UserRouter.InitRouter()
this.activity.StackingRouter.InitRouter()
this.activity.BitGetRouter.InitRouter()
this.event.EventRouter.InitRouter()
this.recharge.RechargeRouter.InitRouter()