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

View File

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