| 1234567891011 |
- import { Module } from '@nestjs/common';
- import { PaymentController } from './payment.controller';
- import { PaymentService } from 'src/services/payment.service';
- import { SocketGateway } from 'src/gateway/socket.gateway';
- @Module({
- controllers: [PaymentController],
- exports: [], // if you have services to share with other modules
- providers: [PaymentService, SocketGateway]
- })
- export class PaymentModule {}
|