|
|
|
@@ -0,0 +1,28 @@ |
|
|
|
package inference |
|
|
|
|
|
|
|
import ( |
|
|
|
"net/http" |
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest/httpx" |
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/inference" |
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc" |
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types" |
|
|
|
) |
|
|
|
|
|
|
|
func StartAllByDeployTaskIdHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { |
|
|
|
return func(w http.ResponseWriter, r *http.Request) { |
|
|
|
var req types.StartAllByDeployTaskIdReq |
|
|
|
if err := httpx.Parse(r, &req); err != nil { |
|
|
|
httpx.ErrorCtx(r.Context(), w, err) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
l := inference.NewStartAllByDeployTaskIdLogic(r.Context(), svcCtx) |
|
|
|
resp, err := l.StartAllByDeployTaskId(&req) |
|
|
|
if err != nil { |
|
|
|
httpx.ErrorCtx(r.Context(), w, err) |
|
|
|
} else { |
|
|
|
httpx.OkJsonCtx(r.Context(), w, resp) |
|
|
|
} |
|
|
|
} |
|
|
|
} |