mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-02 16:48:50 +01:00
7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
|
|
import { KeyvFile } from 'keyv-file';
|
||
|
|
|
||
|
|
export const logFile = new KeyvFile({ filename: './data/logs.json' }).setMaxListeners(20);
|
||
|
|
export const violationFile = new KeyvFile({ filename: './data/violations.json' }).setMaxListeners(
|
||
|
|
20,
|
||
|
|
);
|