package logic import ( "context" "juwan-backend/app/game/rpc/internal/svc" "juwan-backend/app/game/rpc/pb" "github.com/zeromicro/go-zero/core/logx" ) type UpdateGamesLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewUpdateGamesLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateGamesLogic { return &UpdateGamesLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } func (l *UpdateGamesLogic) UpdateGames(in *pb.UpdateGamesReq) (*pb.UpdateGamesResp, error) { return &pb.UpdateGamesResp{}, nil }