From d53c01c73468ccb72e5991ad0dee5d08440c39e3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 4 Nov 2023 23:55:45 +0100 Subject: [PATCH] Created the channel.h command --- src/commands/channel.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/commands/channel.h diff --git a/src/commands/channel.h b/src/commands/channel.h new file mode 100644 index 0000000..287d191 --- /dev/null +++ b/src/commands/channel.h @@ -0,0 +1,12 @@ +#ifndef BOT_ROOM_H +#define BOT_ROOM_H + +#include +#include + +class channel { +public: + static void execute(sql::Connection &con, dpp::cluster &bot, const dpp::slashcommand_t &event); +}; + +#endif //BOT_ROOM_H