mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:43:09 +02:00
10 lines
180 B
TypeScript
10 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
|
|
}
|
|
);
|