Files
thebet365/apps/api/src/domains/operations/cashback/cashback.module.ts
Mars 4c92157299 重构 API 为 8 领域 + 应用层架构
将后端模块拆分为 domains、applications、shared 三层,结算计算器移入 domain 纯函数目录,API 路径与测试保持不变。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-02 14:48:41 +08:00

11 lines
288 B
TypeScript

import { Module } from '@nestjs/common';
import { CashbackService } from './cashback.service';
import { WalletModule } from '../../ledger/wallet.module';
@Module({
imports: [WalletModule],
providers: [CashbackService],
exports: [CashbackService],
})
export class CashbackModule {}