#pragma once #include #include #include #include "../commands/command.hpp" namespace bot { namespace mod { class Ping : public command::Command { std::string get_name() override { return "ping"; } std::variant, std::string> run( const irc::Message &msg) override { return "pong"; } }; } }