17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import { default as backups } from "./app/backups"
|
|
import { default as tables } from "./app/tables"
|
|
import { default as automations } from "./app/automations"
|
|
import { default as applications } from "./app/applications"
|
|
import { default as users } from "./users"
|
|
|
|
const sdk = {
|
|
backups,
|
|
tables,
|
|
automations,
|
|
applications,
|
|
users,
|
|
}
|
|
|
|
// default export for TS
|
|
export default sdk
|