From 8aad4a177178f25e0c63e6059ba9f3d3fc9a3af0 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 8 Jun 2024 23:14:36 +0530 Subject: [PATCH] feat: import routers --- server/src/routes/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 server/src/routes/index.ts diff --git a/server/src/routes/index.ts b/server/src/routes/index.ts new file mode 100644 index 00000000..b55bf658 --- /dev/null +++ b/server/src/routes/index.ts @@ -0,0 +1,9 @@ +import { router as record} from './record'; +import { router as workflow} from './workflow'; +import { router as storage} from './storage'; + +export { + record, + workflow, + storage, +};