feat: 增加运行环境编辑功能

This commit is contained in:
zhengkunwang223
2023-04-02 16:54:00 +08:00
committed by zhengkunwang223
parent 22d9bdacf6
commit d4c1caa26a
23 changed files with 581 additions and 107 deletions

View File

@@ -18,5 +18,7 @@ func (r *RuntimeRouter) InitRuntimeRouter(Router *gin.RouterGroup) {
groupRouter.POST("/search", baseApi.SearchRuntimes)
groupRouter.POST("", baseApi.CreateRuntime)
groupRouter.POST("/del", baseApi.DeleteRuntime)
groupRouter.POST("/update", baseApi.UpdateRuntime)
groupRouter.GET("/:id", baseApi.GetRuntime)
}
}