BE/src/oracle/manage-fee/manage-fee.module.ts
2025-06-18 17:15:21 +05:30

12 lines
354 B
TypeScript

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 {}