Assist_Design/apps/bff/src/modules/catalog/catalog.module.ts

19 lines
921 B
TypeScript
Raw Normal View History

2025-08-21 15:24:40 +09:00
import { Module } from "@nestjs/common";
import { CatalogController } from "./catalog.controller";
import { IntegrationsModule } from "@bff/integrations/integrations.module";
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module";
import { CoreConfigModule } from "@bff/core/config/config.module";
2025-08-27 20:01:46 +09:00
import { BaseCatalogService } from "./services/base-catalog.service";
import { InternetCatalogService } from "./services/internet-catalog.service";
import { SimCatalogService } from "./services/sim-catalog.service";
import { VpnCatalogService } from "./services/vpn-catalog.service";
@Module({
imports: [IntegrationsModule, MappingsModule, CoreConfigModule],
controllers: [CatalogController],
2025-08-28 16:57:57 +09:00
providers: [BaseCatalogService, InternetCatalogService, SimCatalogService, VpnCatalogService],
exports: [InternetCatalogService, SimCatalogService, VpnCatalogService],
})
2025-08-28 16:57:57 +09:00
export class CatalogModule {}