feat:完善项目信息

This commit is contained in:
henry
2021-12-27 13:39:17 +08:00
parent 45b2e85cfd
commit 24806c5d80
4 changed files with 73 additions and 0 deletions

View File

@ -28,6 +28,12 @@ func registerAPI(app *gin.Engine) {
_api := new(api2.Index)
indexV1.GET("", _api.Instance)
}
// User 用户信息管理
userV1 := v1.Group("/user")
{
_api := new(api2.User)
userV1.POST("/collect/launch", _api.Collect)
}
// Activity 活动信息管理
activityV1 := v1.Group("/activity")
{