feat: global export integration

This commit is contained in:
karishmas6
2024-09-17 21:00:13 +05:30
parent 81456ee8ba
commit 60b8dc134f

View File

@@ -2,10 +2,12 @@ import { router as record } from './record';
import { router as workflow } from './workflow'; import { router as workflow } from './workflow';
import { router as storage } from './storage'; import { router as storage } from './storage';
import { router as auth } from './auth'; import { router as auth } from './auth';
import { router as integration } from './integration';
export { export {
record, record,
workflow, workflow,
storage, storage,
auth, auth,
integration,
}; };