From d76037b36feaa71923325f3f6073085a68810917 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 20 Apr 2024 22:47:34 +0500 Subject: feat: irc client (wip) --- src/irc/client.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/irc/client.cpp (limited to 'src/irc/client.cpp') diff --git a/src/irc/client.cpp b/src/irc/client.cpp new file mode 100644 index 0000000..ed9552e --- /dev/null +++ b/src/irc/client.cpp @@ -0,0 +1,10 @@ +#include "client.hpp" + +#include + +using namespace RedpilledBot::IRC; + +Client::Client(std::string username, std::string password) { + this->username = username; + this->password = password; +} -- cgit v1.2.3