mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-10 14:56:39 +09: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
|
|
}
|
|
);
|