Browse Source

added getJobLog api handler

Former-commit-id: d03433d970
pull/123/head
tzwang 1 year ago
parent
commit
b919452c43
1 changed files with 28 additions and 0 deletions
  1. +28
    -0
      api/internal/handler/schedule/schedulegetaijoblogloghandler.go

+ 28
- 0
api/internal/handler/schedule/schedulegetaijoblogloghandler.go View File

@@ -0,0 +1,28 @@
package schedule

import (
"net/http"

"github.com/zeromicro/go-zero/rest/httpx"
"gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/logic/schedule"
"gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/svc"
"gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/types"
)

func ScheduleGetAiJobLogLogHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.AiJobLogReq
if err := httpx.Parse(r, &req); err != nil {
httpx.ErrorCtx(r.Context(), w, err)
return
}

l := schedule.NewScheduleGetAiJobLogLogLogic(r.Context(), svcCtx)
resp, err := l.ScheduleGetAiJobLogLog(&req)
if err != nil {
httpx.ErrorCtx(r.Context(), w, err)
} else {
httpx.OkJsonCtx(r.Context(), w, resp)
}
}
}

Loading…
Cancel
Save