blob: 41d030149c3d117441edad1b3feb08701f973322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import * as redis from 'redis';
import config from '../config';
export default redis.createClient(
config.redis.port,
config.redis.host,
{
password: config.redis.pass,
prefix: config.redis.prefix,
db: config.redis.db || 0
}
);
|