mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02: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 './chat/interfaces/session.js';
|
|
export default restChatService;
|