From 9bb97ad75e32d50a682571fa36bafa79f1e2d014 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 2 May 2024 02:08:01 +0500 Subject: feat: massping command --- src/commands/command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/commands') diff --git a/src/commands/command.cpp b/src/commands/command.cpp index 8c097a9..60db7c5 100644 --- a/src/commands/command.cpp +++ b/src/commands/command.cpp @@ -9,6 +9,7 @@ #include #include "../bundle.hpp" +#include "../modules/massping.hpp" #include "../modules/ping.hpp" #include "../utils/chrono.hpp" #include "request.hpp" @@ -17,6 +18,7 @@ namespace bot { namespace command { CommandLoader::CommandLoader() { this->add_command(std::make_unique()); + this->add_command(std::make_unique()); } void CommandLoader::add_command(std::unique_ptr command) { -- cgit v1.2.3