feat: runtime 增加删除功能

This commit is contained in:
zhengkunwang223
2023-03-31 14:02:28 +08:00
committed by zhengkunwang223
parent 64a954df53
commit 22d9bdacf6
19 changed files with 217 additions and 43 deletions

View File

@@ -17,5 +17,6 @@ func (r *RuntimeRouter) InitRuntimeRouter(Router *gin.RouterGroup) {
{
groupRouter.POST("/search", baseApi.SearchRuntimes)
groupRouter.POST("", baseApi.CreateRuntime)
groupRouter.POST("/del", baseApi.DeleteRuntime)
}
}