mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-14 04:58:07 +01:00
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
|
import Redis from "ioredis";
|
||
|
const redis = new Redis(
|
||
|
// rome-ignore lint/style/noNonNullAssertion: env vars are always defined
|
||
|
parseInt(process.env.REDIS_PORT!),
|
||
|
process.env.REDIS_HOST as string,
|
||
|
{
|
||
|
password: process.env.REDIS_PASSWORD,
|
||
|
},
|
||
|
);
|
||
|
|
||
|
export default redis;
|