mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 20:06:43 -06: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
|
||
|
}
|
||
|
);
|