summaryrefslogtreecommitdiff
path: root/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-06 00:45:48 +0500
committerilotterytea <iltsu@alright.party>2024-05-06 00:45:48 +0500
commit58df60b6e3ccda724a81dd9f0721b1c6e84686c1 (patch)
tree01e86080261a5843ff0d2af1ad655e324709f826 /src/commands/command.cpp
parent28a63d9819c05d2576355117e54acc3f466bf926 (diff)
feat: new command - !notify (i havent tested it (clueless))
Diffstat (limited to 'src/commands/command.cpp')
-rw-r--r--src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/command.cpp b/src/commands/command.cpp
index 46dc03b..dfb1fbf 100644
--- a/src/commands/command.cpp
+++ b/src/commands/command.cpp
@@ -11,6 +11,7 @@
#include "../bundle.hpp"
#include "../modules/event.hpp"
#include "../modules/massping.hpp"
+#include "../modules/notify.hpp"
#include "../modules/ping.hpp"
#include "../utils/chrono.hpp"
#include "request.hpp"
@@ -21,6 +22,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Ping>());
this->add_command(std::make_unique<mod::Massping>());
this->add_command(std::make_unique<mod::Event>());
+ this->add_command(std::make_unique<mod::Notify>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {