mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
11 lines
273 B
TypeScript
11 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;
|