Files
parcer/server/src/routes/index.ts
2024-10-01 15:29:26 +05:30

16 lines
369 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';
import { router as proxy } from './proxy';
export {
record,
workflow,
storage,
auth,
integration,
proxy
};