Trần Viết Sơn
feat: order
463569a
raw
history blame contribute delete
547 Bytes
import { forwardRef, Module } from '@nestjs/common';
import { PaymentService } from './payment.service.js';
import { PaymentController } from './payment.controller.js';
import { OrderModule } from '../modules/order/order.module.js';
import { BranchModule } from '../modules/branch/branch.module.js';
import { OrderService } from '../modules/order/order.service.js';
@Module({
imports: [BranchModule],
controllers: [PaymentController],
providers: [PaymentService, OrderService],
exports: [PaymentService],
})
export class PaymentModule {}