summaryrefslogtreecommitdiff
path: root/src/irc/client.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-04-20 22:47:34 +0500
committerilotterytea <iltsu@alright.party>2024-04-20 22:47:34 +0500
commitd76037b36feaa71923325f3f6073085a68810917 (patch)
tree672492cfa62f6296075b76c8c0e9befbfaeb3b88 /src/irc/client.cpp
parent4e13a51282043550314ccb8178db7b7879949efc (diff)
feat: irc client (wip)
Diffstat (limited to 'src/irc/client.cpp')
-rw-r--r--src/irc/client.cpp10
1 files changed, 10 insertions, 0 deletions
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 <string>
+
+using namespace RedpilledBot::IRC;
+
+Client::Client(std::string username, std::string password) {
+ this->username = username;
+ this->password = password;
+}