2016-12-28 16:49:51 -06:00
|
|
|
import * as redis from 'redis';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../config';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
export default redis.createClient(
|
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
|
|
|
auth_pass: config.redis.pass
|
|
|
|
}
|
|
|
|
);
|