budibase/packages/cli/src/options.js

9 lines
265 B
JavaScript
Raw Normal View History

2021-03-29 18:40:17 +02:00
const analytics = require("./analytics")
2021-02-25 15:42:50 +01:00
const hosting = require("./hosting")
const backups = require("./backups")
const plugins = require("./plugins")
2021-02-25 15:42:50 +01:00
exports.getCommands = () => {
return [hosting.command, analytics.command, backups.command, plugins.command]
2021-02-25 15:42:50 +01:00
}