import { 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: [AuthModule], controllers: [ManageFeeController], providers: [ManageFeeService], }) export class ManageFeeModule {}