()
| 88 | |
| 89 | let redisPub: ExtendedRedis; |
| 90 | export function getRedisPub() { |
| 91 | if (!redisPub) { |
| 92 | redisPub = createRedisClient('redis-pub', REDIS_URL, options); |
| 93 | } |
| 94 | |
| 95 | return redisPub; |
| 96 | } |
| 97 | |
| 98 | let redisQueue: ExtendedRedis; |
| 99 | export function getRedisQueue() { |
no test coverage detected