From 454938c768a80fe80aa2eeaad18ee459fe90ee7c Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 15 Sep 2024 17:56:27 +0530 Subject: [PATCH] feat: export auth router --- 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 ff6f8402..19257cf1 100644 --- a/server/src/routes/index.ts +++ b/server/src/routes/index.ts @@ -1,9 +1,11 @@ import { router as record } from './record'; import { router as workflow } from './workflow'; import { router as storage } from './storage'; +import { router as auth } from './auth'; export { record, workflow, storage, + auth, };