- 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
12 lines
510 B
TypeScript
12 lines
510 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { WorkspaceDataSourceModule } from 'src/engine/workspace-datasource/workspace-datasource.module';
|
|
import { AddPersonIdAndWorkspaceMemberIdService } from 'src/modules/calendar-messaging-participant-manager/services/add-person-id-and-workspace-member-id/add-person-id-and-workspace-member-id.service';
|
|
|
|
@Module({
|
|
imports: [WorkspaceDataSourceModule],
|
|
providers: [AddPersonIdAndWorkspaceMemberIdService],
|
|
exports: [],
|
|
})
|
|
export class CalendarCommonModule {}
|