2025-09-17 18:43:43 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
2025-12-10 16:08:34 +09:00
|
|
|
import { WhmcsModule } from "@bff/integrations/whmcs/whmcs.module.js";
|
|
|
|
|
import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module.js";
|
|
|
|
|
import { FreebitModule } from "@bff/integrations/freebit/freebit.module.js";
|
2025-09-17 18:43:43 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2025-09-25 15:11:28 +09:00
|
|
|
imports: [WhmcsModule, SalesforceModule, FreebitModule],
|
2025-09-17 18:43:43 +09:00
|
|
|
providers: [],
|
2025-09-25 15:11:28 +09:00
|
|
|
exports: [WhmcsModule, SalesforceModule, FreebitModule],
|
2025-09-17 18:43:43 +09:00
|
|
|
})
|
|
|
|
|
export class IntegrationsModule {}
|