mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
|
|
import localUser from '../config.local';
|
||
|
|
import cleanupUser from './cleanupUser';
|
||
|
|
|
||
|
|
async function globalTeardown() {
|
||
|
|
try {
|
||
|
|
await cleanupUser(localUser);
|
||
|
|
} catch (error) {
|
||
|
|
console.error('Error:', error);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default globalTeardown;
|