| 3 | const std::string BOT_TOKEN = "add your token here"; |
| 4 | |
| 5 | int main() { |
| 6 | dpp::cluster bot(BOT_TOKEN); |
| 7 | |
| 8 | bot.on_ready([&bot](const dpp::ready_t& event) { |
| 9 | if (dpp::run_once<struct register_bot_commands>()) { |
| 10 | bot.global_command_create(dpp::slashcommand("ping", "Ping pong!", bot.me.id)); |
| 11 | } |
| 12 | }); |
| 13 | } |
nothing calls this directly
no test coverage detected