From e9e4a6123649b64770bec6ee5b36884f1f8fb088 Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 2 Oct 2024 01:10:33 -0400 Subject: [PATCH] Fix import --- api/data/database.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/data/database.ts b/api/data/database.ts index 4233267..d274842 100644 --- a/api/data/database.ts +++ b/api/data/database.ts @@ -1,5 +1,6 @@ import { SubscriptionTable } from "./subscription" -import { Pool } from "pg" +import * as pg from "pg" +const { Pool } = pg export interface Database { subscription: SubscriptionTable