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