22 lines
512 B
Go
22 lines
512 B
Go
|
package user
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
xhttp "github.com/zeromicro/x/http"
|
||
|
"tianyuan-api/apps/admin/internal/logic/user"
|
||
|
"tianyuan-api/apps/admin/internal/svc"
|
||
|
)
|
||
|
|
||
|
func GetUserInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
l := user.NewGetUserInfoLogic(r.Context(), svcCtx)
|
||
|
resp, err := l.GetUserInfo()
|
||
|
if err != nil {
|
||
|
xhttp.JsonBaseResponseCtx(r.Context(), w, err)
|
||
|
} else {
|
||
|
xhttp.JsonBaseResponseCtx(r.Context(), w, resp)
|
||
|
}
|
||
|
}
|
||
|
}
|