From 459218ae13e4e92ccb37f6053cc574224fe1d0c3 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sun, 30 Nov 2025 20:01:18 +0530 Subject: [PATCH] fix: remove integration router exports --- server/src/routes/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/src/routes/index.ts b/server/src/routes/index.ts index 3d8a3644..a6ec206f 100644 --- a/server/src/routes/index.ts +++ b/server/src/routes/index.ts @@ -2,7 +2,6 @@ import { router as record } from './record'; import { router as workflow } from './workflow'; import { router as storage } from './storage'; import { router as auth } from './auth'; -import { router as integration } from './integration'; import { router as proxy } from './proxy'; import { router as webhook } from './webhook'; @@ -11,7 +10,6 @@ export { workflow, storage, auth, - integration, proxy, webhook };