package handler import ( "net/http" "fusenapi/server/home-user-auth/internal/logic" "fusenapi/server/home-user-auth/internal/svc" "fusenapi/server/home-user-auth/internal/types" ) func UserContactServiceHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var req types.RequestContactService // 创建一个业务逻辑层实例 l := logic.NewUserContactServiceLogic(r.Context(), svcCtx) resp := l.UserContactService(&req, userinfo) } }