tydata-server/app/main/api/internal/handler/user/detailhandler.go
2025-06-08 15:14:34 +08:00

18 lines
400 B
Go

package user
import (
"net/http"
"tydata-server/app/main/api/internal/logic/user"
"tydata-server/app/main/api/internal/svc"
"tydata-server/common/result"
)
func DetailHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := user.NewDetailLogic(r.Context(), svcCtx)
resp, err := l.Detail()
result.HttpResult(r, w, resp, err)
}
}