budibase/packages/cli/src/options.js

7 lines
157 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")
exports.getCommands = () => {
2021-03-29 18:40:17 +02:00
return [hosting.command, analytics.command]
2021-02-25 15:42:50 +01:00
}