package carv import ( "context" "nova_task/internal/svc" "nova_task/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type WalletCheckInLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } // 每日钱包签到任务 func NewWalletCheckInLogic(ctx context.Context, svcCtx *svc.ServiceContext) *WalletCheckInLogic { return &WalletCheckInLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *WalletCheckInLogic) WalletCheckIn(req *types.EmailKey) (resp *types.CarvResult, err error) { // todo: add your logic here and delete this line return }