This commit is contained in:
2025-10-21 18:41:31 +08:00
parent 84046e51e7
commit 050809c471
10 changed files with 435 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
package agent
import (
"net/http"
"hm-server/app/main/api/internal/logic/agent"
"hm-server/app/main/api/internal/svc"
"hm-server/common/result"
)
func GetMembershipInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := agent.NewGetMembershipInfoLogic(r.Context(), svcCtx)
resp, err := l.GetMembershipInfo()
result.HttpResult(r, w, resp, err)
}
}