feat:完善项目管理

This commit is contained in:
henry
2021-12-16 13:22:14 +08:00
parent 8ab89cc051
commit d594725972
9 changed files with 209 additions and 1 deletions

View File

@ -29,6 +29,13 @@ func registerAPI(app *gin.Engine) {
activityV1.POST("/detail", _api.Detail)
activityV1.POST("/join", _api.Join)
}
// Sys 平台信息故哪里
sysV1 := v1.Group("/sys")
{
_api := new(api2.Sys)
sysV1.GET("/platform", _api.Platform)
sysV1.GET("/navigation", _api.Navigation)
}
// Docking 对接信息管理
dockingV1 := v1.Group("/docking")
{