feat:完善项目

This commit is contained in:
henry
2021-11-10 11:26:40 +08:00
parent fb77e15579
commit 095bdcfe4c
10 changed files with 263 additions and 35 deletions

View File

@ -156,10 +156,13 @@ func (this *Router) registerAPI() {
_api := new(api.Work)
workV1.POST("/list", _api.Instance)
workV1.POST("/person", _api.Person)
workV1.POST("/workbench", _api.Workbench)
workV1.POST("/launch", _api.Launch)
workV1.POST("/examine", _api.Examine)
workV1.POST("/delete", _api.Delete)
workV1.GET("/schedule", _api.Schedule)
workV1.POST("/schedule/edit", _api.ScheduleEdit)
workV1.POST("/schedule/delete", _api.ScheduleDelete)
}
}