import { Module } from '@nestjs/common'; import { MasterConfigMappingController } from './master-config-mapping/master-config-mapping.controller'; import { MasterConfigCategoryController } from './master-config-category/master-config-category.controller'; import { MasterConfigController } from './master-config.controller'; import { MasterConfigService } from './master-config.service'; import { MasterConfigMappingService } from './master-config-mapping/master-config-mapping.service'; import { MasterConfigCategoryService } from './master-config-category/master-config-category.service'; @Module({ controllers: [MasterConfigController, MasterConfigMappingController, MasterConfigCategoryController], providers: [MasterConfigService, MasterConfigMappingService, MasterConfigCategoryService], imports: [] }) export class MasterConfigModule { }