16 lines
369 B
TypeScript
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
|
|
};
|