18 lines
429 B
TypeScript
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
|
|
};
|