remedify-content-be/src/master-config/master-config.module.ts
2025-02-24 12:36:56 +05:30

15 lines
852 B
TypeScript

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