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