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