Files
BartenderBot/src/Commands.hpp

7 lines
238 B
C++

#include <dpp/dispatcher.h>
void commandPing(const dpp::slashcommand_t &event);
inline std::unordered_map<std::string,
std::function<void(const dpp::slashcommand_t &event)>>
Commands{{"ping", commandPing}};