gwei-alert-bot/src/redis.ts

14 lines
275 B
TypeScript
Raw Normal View History

2023-04-18 01:49:20 +00:00
import Redis from 'redis';
// Create a new Redis client
const client = Redis.createClient({
url: 'redis://redis:6379'
});
// Log any Redis errors to the console
client.on('error', (error) => {
console.error(error);
});
// Export the Redis client
export default client;