2025-11-18 14:06:27 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
|
|
|
|
import { SupportController } from "./support.controller";
|
|
|
|
|
import { SupportService } from "./support.service";
|
2025-11-26 16:36:06 +09:00
|
|
|
import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module";
|
|
|
|
|
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module";
|
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],
|
|
|
|
|
providers: [SupportService],
|
|
|
|
|
exports: [SupportService],
|
|
|
|
|
})
|
|
|
|
|
export class SupportModule {}
|