mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
|
|
const { KeyvFile } = require('keyv-file');
|
||
|
|
|
||
|
|
const logFile = new KeyvFile({ filename: './data/logs.json' });
|
||
|
|
const pendingReqFile = new KeyvFile({ filename: './data/pendingReqCache.json' });
|
||
|
|
const violationFile = new KeyvFile({ filename: './data/violations.json' });
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
logFile,
|
||
|
|
pendingReqFile,
|
||
|
|
violationFile,
|
||
|
|
};
|