Assist_Design/apps/bff/src/integrations/integrations.module.ts

13 lines
576 B
TypeScript
Raw Normal View History

import { Module } from "@nestjs/common";
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";
import { JapanPostModule } from "@bff/integrations/japanpost/japanpost.module.js";
@Module({
imports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
providers: [],
exports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
})
export class IntegrationsModule {}