From 8c9f4843fc904f53197d6008c29df7ba5b1353e9 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 9 May 2024 00:04:43 +0500 Subject: feat: new command - !timer --- 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 4cfe959..0bc0f15 100644 --- a/src/commands/command.cpp +++ b/src/commands/command.cpp @@ -15,6 +15,7 @@ #include "../modules/massping.hpp" #include "../modules/notify.hpp" #include "../modules/ping.hpp" +#include "../modules/timer.hpp" #include "../utils/chrono.hpp" #include "request.hpp" @@ -27,6 +28,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