@@ -19,5 +19,10 @@ func StartProject(c *gin.Context) {
c.JSON(http.StatusBadRequest, entity.HttpResult{Status: false, Code: "1003", Message: "请求参数格式错误。"})
return
}
+ // 1 场景
+ // 2 动力学模型
+ // 3 传感器
+ // 4 算法
+ //service
c.JSON(http.StatusOK, entity.HttpResult{Status: true, Code: "2000", Message: "项目启动请求已被成功接收,等待调度处理。"})
@@ -1 +0,0 @@
-package service
@@ -0,0 +1,4 @@
+package service
+
+// PushAlgorithmImage 将镜像文件推送到镜像仓库,共集群内所有节点使用
+func PushAlgorithmImage() {}