Files
parcer/server/src/routes/index.ts

18 lines
429 B
TypeScript
Raw Normal View History

2024-06-08 23:15:32 +05:30
import { router as record } from './record';
import { router as workflow } from './workflow';
import { router as storage } from './storage';
2024-09-15 17:56:27 +05:30
import { router as auth } from './auth';
2024-09-17 21:00:13 +05:30
import { router as integration } from './integration';
2024-10-01 15:29:26 +05:30
import { router as proxy } from './proxy';
2025-05-27 20:09:52 +05:30
import { router as webhook } from './webhook';
2024-06-08 23:14:36 +05:30
export {
record,
workflow,
storage,
2024-09-15 17:56:27 +05:30
auth,
2024-09-17 21:00:13 +05:30
integration,
2025-05-27 20:09:52 +05:30
proxy,
webhook
2024-06-08 23:14:36 +05:30
};