Added about command and more bot info

This commit is contained in:
2025-07-19 17:06:45 +03:00
parent a29587d0cb
commit e4e9db2f84
4 changed files with 24 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
#include "../../settings.hpp"
#include <dpp/dispatcher.h>
void commandPing(const dpp::slashcommand_t &event) { event.reply("Pong"); }
void commandAbout(const dpp::slashcommand_t &event) { event.reply("Pong"); }
void commandAbout(const dpp::slashcommand_t &event) {
event.reply(COMMAND_ABOUT_RESPONSE);
}