1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-10 11:52:51 +09:00
hotomoe/src/db/redis.ts
2017-01-17 09:14:06 +09:00

11 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
}
);