BE/src/pg/uscib-managed-sp/region/region.module.ts

12 lines
361 B
TypeScript
Raw Normal View History

2025-09-20 13:30:57 +05:30
import { forwardRef, Module } from '@nestjs/common';
2025-09-17 10:18:44 +05:30
import { RegionController } from './region.controller';
import { RegionService } from './region.service';
2025-09-20 13:30:57 +05:30
import { AuthModule } from 'src/auth/auth.module';
2025-09-17 10:18:44 +05:30
@Module({
2025-09-20 13:30:57 +05:30
imports: [forwardRef(() => AuthModule)],
2025-09-17 10:18:44 +05:30
controllers: [RegionController],
providers: [RegionService]
})
2025-09-20 13:30:57 +05:30
export class RegionModule { }