This commit is contained in:
eson 2023-11-23 18:05:59 +08:00
parent 1a44a41c22
commit b9b0ab98ee

View File

@ -1,6 +1,7 @@
package handler
import (
"log"
"net/http"
"reflect"
@ -20,6 +21,8 @@ func UserGetProfileHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return
}
log.Println(userinfo)
// 创建一个业务逻辑层实例
l := logic.NewUserGetProfileLogic(r.Context(), svcCtx)