From 594e7601c1306e26e7bd3dad93a19a882d1f83f6 Mon Sep 17 00:00:00 2001 From: Petter Machado Date: Tue, 8 Oct 2024 15:30:28 +0200 Subject: [PATCH] fix: Import (#13) --- lib/db/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/index.ts b/lib/db/index.ts index 896dc17..dd96c2e 100644 --- a/lib/db/index.ts +++ b/lib/db/index.ts @@ -1,6 +1,6 @@ import { addDays, addHours, addMinutes } from "date-fns"; import { Sequelize, DataTypes, SyncOptions, Options } from "sequelize"; -import { getLogger } from "../logger"; +import { getLogger } from "../logger/index.js"; const logger = getLogger("db/index");