9 lines
195 B
TypeScript
Raw Normal View History

2023-11-01 12:10:52 -04:00
import { Redis } from "@upstash/redis";
const redis = new Redis({
url: "https://us1-new-mako-37785.upstash.io",
token: process.env.UPSTASH_REDIS_REST_TOKEN as string,
});
export { redis };