26 lines
578 B
Go
26 lines
578 B
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.10.1
|
|
|
|
package user
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"sundynix-micro-go/app/auth/api/internal/logic/user"
|
|
"sundynix-micro-go/app/auth/api/internal/svc"
|
|
"sundynix-micro-go/common/response"
|
|
)
|
|
|
|
// 获取当前用户信息
|
|
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 {
|
|
response.Fail(w, err.Error())
|
|
} else {
|
|
response.OkWithData(w, resp)
|
|
}
|
|
}
|
|
}
|