import { Module } from '@nestjs/common'; import { ObjectMetadataRepositoryModule } from 'src/engine/object-metadata-repository/object-metadata-repository.module'; import { WorkspaceDataSourceModule } from 'src/engine/workspace-datasource/workspace-datasource.module'; import { MessageParticipantService } from 'src/modules/messaging/services/message-participant/message-participant.service'; import { PersonObjectMetadata } from 'src/modules/person/standard-objects/person.object-metadata'; @Module({ imports: [ WorkspaceDataSourceModule, ObjectMetadataRepositoryModule.forFeature([PersonObjectMetadata]), ], providers: [MessageParticipantService], exports: [MessageParticipantService], }) export class MessageParticipantModule {}