// Code generated by goctl. DO NOT EDIT! // Source: gift.proto package server import ( "context" "live-service/app/user_center/rpc/internal/logic" "live-service/app/user_center/rpc/internal/svc" "live-service/app/user_center/rpc/pb" ) type UserCenterServer struct { svcCtx *svc.ServiceContext pb.UnimplementedUserCenterServer } func NewUserCenterServer(svcCtx *svc.ServiceContext) *UserCenterServer { return &UserCenterServer{ svcCtx: svcCtx, } } // user func (s *UserCenterServer) RetrievePlatformUser(ctx context.Context, in *pb.PlatformUserReq) (*pb.PlatformUserResp, error) { l := logic.NewRetrievePlatformUserLogic(ctx, s.svcCtx) return l.RetrievePlatformUser(in) }