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