1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-19 08:13:14 +09:00
cherrypick/src/db/redis.ts

11 lines
180 B
TypeScript
Raw Normal View History

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