Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	File size: 547 Bytes
			
			| 463569a f4866cb 463569a 494e1c4 f4866cb 463569a f4866cb 463569a f4866cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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 {}
 |