From 2b2611d5a2bb9f2bec1ef71285e3a4e2d848392c Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 15 Dec 2024 00:08:06 +0500 Subject: feat: userid command --- bot/src/commands/command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bot/src/commands') 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()); this->add_command(std::make_unique()); this->add_command(std::make_unique()); + this->add_command(std::make_unique()); } void CommandLoader::add_command(std::unique_ptr command) { -- cgit v1.2.3