diff options
| author | ilotterytea <iltsu@alright.party> | 2024-04-20 23:01:32 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-04-20 23:01:32 +0500 |
| commit | e4cbe022bd03d3675f4d8a1986bf75c5bc313094 (patch) | |
| tree | 6663cfe47fd26bc456c5db09fd19feebb09b9515 /src | |
| parent | d76037b36feaa71923325f3f6073085a68810917 (diff) | |
feat: ixwebsocket
Diffstat (limited to 'src')
| -rw-r--r-- | src/irc/client.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/irc/client.hpp b/src/irc/client.hpp index 2fea780..493235b 100644 --- a/src/irc/client.hpp +++ b/src/irc/client.hpp @@ -1,5 +1,7 @@ #pragma once +#include <ixwebsocket/IXWebSocket.h> + #include <string> namespace RedpilledBot { @@ -12,6 +14,8 @@ namespace RedpilledBot { private: std::string username; std::string password; + + ix::WebSocket websocket; }; } } |
