mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import * as redis from 'redis';
|
|
import config from '../config';
|
|
|
|
export default redis.createClient(
|
|
config.redis.port,
|
|
config.redis.host,
|
|
{
|
|
auth_pass: config.redis.pass
|
|
}
|
|
);
|