This commit is contained in:
Erik 2022-04-14 11:44:58 +03:00
parent b7d87d1860
commit db2743d277
Signed by untrusted user: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB

View File

@ -0,0 +1,19 @@
const { SlashCommand } = require("../../../interfaces");
class Commands extends SlashCommand {
// Used to disable and enable commands, possibly list them?
constructor(client) {
super(client, {
name: 'commands',
module: 'administration'
});
}
execute(interaction, opts) {
}
}
//module.exports = Commands;