2016-12-28 23:49:51 +01:00
|
|
|
import * as redis from 'redis';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../config';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-06 14:44:55 +01:00
|
|
|
export default config.redis.map(({ host, port, pass }) => {
|
|
|
|
return redis.createClient(port, host, {
|
|
|
|
auth_pass: pass.getOrElse(null)
|
|
|
|
});
|
|
|
|
}).getOrElse(null);
|