package core import ( clientCore "gitlink.org.cn/JointCloud/pcm-coordinator/client" "net/http" "github.com/zeromicro/go-zero/rest/httpx" "gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/core" "gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc" ) func PullTaskInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var req clientCore.PullTaskInfoReq if err := httpx.Parse(r, &req); err != nil { httpx.ErrorCtx(r.Context(), w, err) return } l := core.NewPullTaskInfoLogic(r.Context(), svcCtx) resp, err := l.PullTaskInfo((*clientCore.PullTaskInfoReq)(&req)) if err != nil { httpx.ErrorCtx(r.Context(), w, err) } else { httpx.OkJsonCtx(r.Context(), w, resp) } } }