From 0847183277923e8d89b021562eecd1c716e92339 Mon Sep 17 00:00:00 2001 From: Harvmaster Date: Wed, 20 May 2026 15:22:27 +0000 Subject: [PATCH] Remove unused import Signed-off-by: Harvmaster --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index f69751e..e2f1337 100644 --- a/src/app.ts +++ b/src/app.ts @@ -1,6 +1,6 @@ import { HTTPService } from './services/http-router.js'; import { InvitationsRoute } from './routes/invitations.js'; -import { StorageSQLite, StoreSQLite } from './services/invitation-store.js'; +import { StorageSQLite } from './services/invitation-store.js'; import { SSEBroadcaster } from './services/sse-broadcast.js'; import type { InvitationSchema } from './utils/invitation-parser.js';