BE/src/pg/manage-fee/manage-fee.module.ts

12 lines
383 B
TypeScript
Raw Normal View History

2025-09-22 17:13:48 +05:30
import { forwardRef, Module } from '@nestjs/common';
2025-09-17 10:18:44 +05:30
import { ManageFeeController } from './manage-fee.controller';
import { ManageFeeService } from './manage-fee.service';
2025-09-22 17:13:48 +05:30
import { AuthModule } from 'src/auth/auth.module';
2025-09-17 10:18:44 +05:30
@Module({
2025-09-22 17:13:48 +05:30
imports: [forwardRef(() => AuthModule)],
2025-09-17 10:18:44 +05:30
controllers: [ManageFeeController],
providers: [ManageFeeService]
})
export class ManageFeeModule {}