import { forwardRef, Module } from '@nestjs/common'; import { ManageFeeController } from './manage-fee.controller'; import { ManageFeeService } from './manage-fee.service'; import { AuthModule } from 'src/auth/auth.module'; @Module({ imports: [forwardRef(() => AuthModule)], controllers: [ManageFeeController], providers: [ManageFeeService] }) export class ManageFeeModule {}