2021-03-29 18:40:17 +02:00
|
|
|
const analytics = require("./analytics")
|
2021-02-25 15:42:50 +01:00
|
|
|
const hosting = require("./hosting")
|
2022-06-30 18:31:18 +02:00
|
|
|
const backups = require("./backups")
|
2022-08-10 14:11:57 +02:00
|
|
|
const plugins = require("./plugins")
|
2021-02-25 15:42:50 +01:00
|
|
|
|
2021-02-26 12:46:48 +01:00
|
|
|
exports.getCommands = () => {
|
2022-08-10 14:11:57 +02:00
|
|
|
return [hosting.command, analytics.command, backups.command, plugins.command]
|
2021-02-25 15:42:50 +01:00
|
|
|
}
|