From 60b8dc134f54dbffbc2f3374c7eb1c96d186a0cd Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 17 Sep 2024 21:00:13 +0530 Subject: [PATCH] feat: global export integration --- server/src/routes/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/routes/index.ts b/server/src/routes/index.ts index 19257cf1..72be1ebd 100644 --- a/server/src/routes/index.ts +++ b/server/src/routes/index.ts @@ -2,10 +2,12 @@ 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'; export { record, workflow, storage, auth, + integration, };