- Removed deprecated files and components from the BFF application, including various auth and catalog services, enhancing code clarity. - Updated package.json scripts for better organization and streamlined development processes. - Refactored portal components to improve structure and maintainability, including the removal of unused files and components. - Enhanced type definitions and imports across the application for consistency and clarity.
12 lines
453 B
TypeScript
12 lines
453 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { ConfigModule } from "@nestjs/config";
|
|
import { IntegrationsModule } from "@bff/integrations/integrations.module";
|
|
import { OrdersModule } from "@bff/modules/orders/orders.module";
|
|
import { SalesforcePubSubSubscriber } from "./pubsub.subscriber";
|
|
|
|
@Module({
|
|
imports: [ConfigModule, IntegrationsModule, OrdersModule],
|
|
providers: [SalesforcePubSubSubscriber],
|
|
})
|
|
export class SalesforceEventsModule {}
|