feat:完善项目

This commit is contained in:
henry
2021-11-09 14:08:02 +08:00
parent 08083d26d3
commit d544b7f80c
14 changed files with 338 additions and 61 deletions

View File

@ -129,6 +129,11 @@ func (this *Router) registerAPI() {
{
_api := new(api.Work)
workV1.POST("/list", _api.Instance)
workV1.POST("/person", _api.Person)
workV1.POST("/launch", _api.Launch)
workV1.POST("/examine", _api.Examine)
workV1.POST("/delete", _api.Delete)
workV1.GET("/schedule", _api.Schedule)
}
}