Files
parcer/server/src/routes/index.ts
2024-09-17 21:00:13 +05:30

14 lines
316 B
TypeScript

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