package user import ( "context" "mingyang-admin-app-rpc/internal/svc" "mingyang-admin-app-rpc/types/app" "github.com/zeromicro/go-zero/core/logx" ) type UpdateUserPcAvatarLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewUpdateUserPcAvatarLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateUserPcAvatarLogic { return &UpdateUserPcAvatarLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // UpdateUserPcAvatar C端用户修改头像 func (l *UpdateUserPcAvatarLogic) UpdateUserPcAvatar(in *app.UpdateUserAvatarReq) (*app.BaseResp, error) { // todo: add your logic here and delete this line return &app.BaseResp{}, nil }