simrail-logs/scripts/clear-redis.js
2024-08-16 12:58:53 +02:00

10 lines
309 B
JavaScript

import { createClient } from 'redis';
createClient({url: process.env.REDIS_URI}).connect().then(async (x) => {
await x.json.del('stations_occupied');
await x.json.del('stations');
await x.json.del('trains');
await x.json.del('trains_occupied');
console.log('done')
process.exit(1);
})