package logic import ( "context" "juwan-backend/app/user_verifications/rpc/internal/svc" "juwan-backend/app/user_verifications/rpc/pb" "github.com/zeromicro/go-zero/core/logx" ) type UpdateUserVerificationsLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewUpdateUserVerificationsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateUserVerificationsLogic { return &UpdateUserVerificationsLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } func (l *UpdateUserVerificationsLogic) UpdateUserVerifications(in *pb.UpdateUserVerificationsReq) (*pb.UpdateUserVerificationsResp, error) { // todo: add your logic here and delete this line return &pb.UpdateUserVerificationsResp{}, nil }