|
- package core
-
- import (
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/core"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
- "gitlink.org.cn/JointCloud/pcm-coordinator/pkg/repository/result"
- "net/http"
- )
-
- func GetResourcePanelConfigHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- l := core.NewGetResourcePanelConfigLogic(r.Context(), svcCtx)
- resp, err := l.GetResourcePanelConfig()
- result.HttpResult(r, w, resp, err)
- }
- }
|