From 1048bf1ab1307c59f948d9c024e95f5561c15ea4 Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya <rushilwiz@gmail.com> Date: Sun, 5 Mar 2023 04:58:51 -0500 Subject: [PATCH] fix: fixed broken imports with new file struc --- src/api/call.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/call.js b/src/api/call.js index 943b711..9d15e01 100644 --- a/src/api/call.js +++ b/src/api/call.js @@ -20,8 +20,8 @@ import { checkOperatorReady, postSummary, completeCall, -} from "./session.js"; -import { chat, summarize } from "./chat.js"; +} from "../lib/session.js"; +import { chat, summarize } from "../lib/chat.js"; const app = Router(); app.use(json());