mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
13 lines
238 B
TypeScript
13 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
|
|
}
|
|
);
|