mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 15:23:09 +02:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import * as redis from 'redis';
|
|
import config from '../config';
|
|
|
|
export default config.redis ? redis.createClient(
|
|
config.redis.port,
|
|
config.redis.host,
|
|
{
|
|
auth_pass: config.redis.pass
|
|
}
|
|
) : null;
|