- Refactor calendar modules and some messaging modules to better organize them by business rules and decouple them - Work toward a common architecture for the different calendar providers by introducing interfaces for the drivers - Modify cron job to use the new sync statuses and stages
21 lines
925 B
TypeScript
21 lines
925 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { MessagingBlocklistManagerModule } from 'src/modules/messaging/blocklist-manager/messaging-blocklist-manager.module';
|
|
import { MessagingMessageCleanerModule } from 'src/modules/messaging/message-cleaner/messaging-message-cleaner.module';
|
|
import { MessagingImportManagerModule } from 'src/modules/messaging/message-import-manager/messaging-import-manager.module';
|
|
import { MessageParticipantManagerModule } from 'src/modules/messaging/message-participant-manager/message-participant-manager.module';
|
|
import { MessagingMonitoringModule } from 'src/modules/messaging/monitoring/messaging-monitoring.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
MessagingImportManagerModule,
|
|
MessagingMessageCleanerModule,
|
|
MessageParticipantManagerModule,
|
|
MessagingBlocklistManagerModule,
|
|
MessagingMonitoringModule,
|
|
],
|
|
providers: [],
|
|
exports: [],
|
|
})
|
|
export class MessagingModule {}
|