mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import * as redis from 'redis';
|
|
import config from '../config';
|
|
|
|
export default redis.createClient(
|
|
config.redis.port,
|
|
config.redis.host,
|
|
{
|
|
password: config.redis.pass,
|
|
prefix: config.redis.prefix,
|
|
db: config.redis.db || 0
|
|
}
|
|
);
|