summaryrefslogtreecommitdiff
path: root/src/db/redis.ts
blob: f8d66ebda0717897f0f3beee3328db2469d04018 (plain)
1
2
3
4
5
6
7
8
9
10
import * as redis from 'redis';
import config from '../config';

export default redis.createClient(
	config.redis.port,
	config.redis.host,
	{
		auth_pass: config.redis.pass
	}
);