Skip to content

Commit

Permalink
Fix other problems
Browse files Browse the repository at this point in the history
  • Loading branch information
fuma-nama committed Apr 20, 2024
1 parent 2062ca0 commit 103cc38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/server/redis/client.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Redis } from "@upstash/redis";

const redis = new Redis({
url: process.env.REDIS_URL,
token: process.env.REDIS_TOKEN,
url: process.env.REDIS_URL!,
token: process.env.REDIS_TOKEN!,
});

export default redis;

0 comments on commit 103cc38

Please sign in to comment.