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, };