summaryrefslogtreecommitdiff
path: root/bot/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-12-15 00:08:06 +0500
committerilotterytea <iltsu@alright.party>2024-12-15 00:08:37 +0500
commit2b2611d5a2bb9f2bec1ef71285e3a4e2d848392c (patch)
tree108888327a71a238baf999733ace19dee1b2a0b8 /bot/src/commands/command.cpp
parent1134c8316e5ee445567f9bf225e9fb9c2631b4dc (diff)
feat: userid command
Diffstat (limited to 'bot/src/commands/command.cpp')
-rw-r--r--bot/src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp
index 7dd4e47..169ca71 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -20,6 +20,7 @@
#include "../modules/settings.hpp"
#include "../modules/spam.hpp"
#include "../modules/timer.hpp"
+#include "../modules/user.hpp"
#include "../utils/chrono.hpp"
#include "request.hpp"
#include "response.hpp"
@@ -38,6 +39,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Chatters>());
this->add_command(std::make_unique<mod::Spam>());
this->add_command(std::make_unique<mod::Settings>());
+ this->add_command(std::make_unique<mod::User>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {