mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 04:57:37 +03:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
import Redis from 'ioredis';
|
|
|
|
const redisUrl = process.env.REDIS_URL;
|
|
|
|
const stub = {
|
|
get: async key => {},
|
|
set: async (key, value, secondsToken, seconds) => {},
|
|
};
|
|
|
|
const redis = redisUrl ? new Redis(redisUrl) : stub;
|
|
export default redis;
|