2016-12-28 23:49:51 +01:00
|
|
|
import * as redis from 'redis';
|
2017-01-17 01:14:06 +01:00
|
|
|
import config from '../conf';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
export default redis.createClient(
|
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
|
|
|
auth_pass: config.redis.pass
|
|
|
|
}
|
|
|
|
);
|