Merge pull request #289 from Hexastack/fix/chat-module-export-conversation-service

fix(api): chat.module.ts export conversationService
This commit is contained in:
Med Marrouchi 2024-10-28 18:12:52 +01:00 committed by GitHub
commit 3144d39d53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,6 +93,12 @@ import { SubscriberService } from './services/subscriber.service';
ChatService, ChatService,
BotService, BotService,
], ],
exports: [SubscriberService, MessageService, LabelService, BlockService], exports: [
SubscriberService,
MessageService,
LabelService,
BlockService,
ConversationService,
],
}) })
export class ChatModule {} export class ChatModule {}