Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
temp disable prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermayone committed Jul 2, 2024
1 parent d8f0b9d commit 730179b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as dotenv from "dotenv";
dotenv.config();

import { PrismaClient } from "@prisma/client";
// import { PrismaClient } from "@prisma/client";
import { App, ExpressReceiver } from "@slack/bolt";
import colors from "colors";
import express from "express";
Expand All @@ -11,7 +11,7 @@ import { healthEndpoint } from "./endpoints/health";
import { mirror } from "./functions/mirror";
import { slog } from "./util/Logger";

const prisma = new PrismaClient();
// const prisma = new PrismaClient();

const PBreceiver = new ExpressReceiver({
signingSecret: process.env.PB_SLACK_SIGNING_SECRET!,
Expand Down Expand Up @@ -81,4 +81,4 @@ HCapp.start(4001).then(async () => {
// "America/New_York"
// );

export { HCapp, HCclient, PBapp, PBclient, prisma };
export { HCapp, HCclient, PBapp, PBclient };

0 comments on commit 730179b

Please sign in to comment.