6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
import { cleanupExpiredSessions } from '../utils/redis.js';
|
|
|
|
setInterval(async () => {
|
|
await cleanupExpiredSessions();
|
|
}, 5000);
|