Files
parcer/server/src/routes/index.ts
2025-05-27 20:09:52 +05:30

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