From 911c40453f2b9d9133bb8941e70515a1e27555a9 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 1 Oct 2024 15:29:26 +0530 Subject: [PATCH] feat: import router as proxy --- 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 72be1ebd..bc616273 100644 --- a/server/src/routes/index.ts +++ b/server/src/routes/index.ts @@ -3,6 +3,7 @@ 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'; export { record, @@ -10,4 +11,5 @@ export { storage, auth, integration, + proxy };