feat:完善项目管理

This commit is contained in:
henry
2021-12-16 09:44:59 +08:00
parent a59759379c
commit 8ab89cc051
7 changed files with 129 additions and 4 deletions

View File

@ -29,6 +29,18 @@ func registerAPI(app *gin.Engine) {
activityV1.POST("/detail", _api.Detail)
activityV1.POST("/join", _api.Join)
}
// Docking 对接信息管理
dockingV1 := v1.Group("/docking")
{
_api := new(api2.Docking)
dockingV1.POST("/launch", _api.Launch)
}
// Message 数据信息管理
messageV1 := v1.Group("/message")
{
_api := new(api2.Message)
messageV1.POST("/launch", _api.Launch)
}
}
// registerAdminAPI 注册API