mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-04 06:31:35 +08:00
11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
/**
|
|
* REST Chat Service
|
|
*
|
|
* This file is a wrapper for the modular implementation in the chat/ directory.
|
|
* See chat/rest-chat-service.ts for the actual implementation.
|
|
*/
|
|
|
|
import restChatService from './chat/rest_chat_service.js';
|
|
export * from './interfaces/chat_session.js';
|
|
export default restChatService;
|