From db2743d2772c8b4d9afe80e5a47857bce5bbb7ae Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Thu, 14 Apr 2022 11:44:58 +0300 Subject: [PATCH] thing --- .../commands/administration/Commands.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/structure/components/commands/administration/Commands.js diff --git a/src/structure/components/commands/administration/Commands.js b/src/structure/components/commands/administration/Commands.js new file mode 100644 index 0000000..79adc37 --- /dev/null +++ b/src/structure/components/commands/administration/Commands.js @@ -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; \ No newline at end of file