2025-11-18 14:06:27 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
2025-12-10 16:08:34 +09:00
|
|
|
import { SupportController } from "./support.controller.js";
|
|
|
|
|
import { SupportService } from "./support.service.js";
|
2026-01-05 15:11:56 +09:00
|
|
|
import { SupportCacheService } from "./support-cache.service.js";
|
2025-12-10 16:08:34 +09:00
|
|
|
import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module.js";
|
|
|
|
|
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module.js";
|
2025-11-18 14:06:27 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2025-11-26 16:36:06 +09:00
|
|
|
imports: [SalesforceModule, MappingsModule],
|
2025-11-18 14:06:27 +09:00
|
|
|
controllers: [SupportController],
|
2026-01-05 15:11:56 +09:00
|
|
|
providers: [SupportService, SupportCacheService],
|
|
|
|
|
exports: [SupportService, SupportCacheService],
|
2025-11-18 14:06:27 +09:00
|
|
|
})
|
|
|
|
|
export class SupportModule {}
|