mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
|
|
const { logger } = require('~/config');
|
||
|
|
const { deleteNullOrEmptyConversations } = require('~/models/Conversation');
|
||
|
|
const cleanup = async () => {
|
||
|
|
try {
|
||
|
|
await deleteNullOrEmptyConversations();
|
||
|
|
} catch (error) {
|
||
|
|
logger.error('[cleanup] Error during app cleanup', error);
|
||
|
|
} finally {
|
||
|
|
logger.debug('Startup cleanup complete');
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = { cleanup };
|