| 12345678910111213141516 |
- /**
- * 钱包模块 - 注入 PaymentsService 用于充值订单
- */
- import { Module } from '@nestjs/common';
- import { WalletService } from './wallet.service';
- import { WalletController } from './wallet.controller';
- import { AuthModule } from '../auth/auth.module';
- import { PaymentsModule } from '../payments/payments.module';
- @Module({
- imports: [AuthModule, PaymentsModule],
- controllers: [WalletController],
- providers: [WalletService],
- exports: [WalletService],
- })
- export class WalletModule {}
|