2016-12-29 00:49:51 +02:00
|
|
|
import * as redis from 'redis';
|
2018-04-02 07:15:53 +03:00
|
|
|
import config from '../config';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
export default redis.createClient(
|
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
|
|
|
auth_pass: config.redis.pass
|
|
|
|
}
|
|
|
|
);
|