|
- package ai
-
- import (
- "net/http"
-
- "github.com/zeromicro/go-zero/rest/httpx"
- "gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/logic/ai"
- "gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/svc"
- )
-
- func GetCenterListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- l := ai.NewGetCenterListLogic(r.Context(), svcCtx)
- resp, err := l.GetCenterList()
- if err != nil {
- httpx.ErrorCtx(r.Context(), w, err)
- } else {
- httpx.OkJsonCtx(r.Context(), w, resp)
- }
- }
- }
|