mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 16:36:44 -06:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import * as redis from 'redis';
|
|
import config from '../conf';
|
|
|
|
export default redis.createClient(
|
|
config.redis.port,
|
|
config.redis.host,
|
|
{
|
|
auth_pass: config.redis.pass
|
|
}
|
|
);
|