mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07: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
|
||
|
}
|
||
|
);
|