diff options
| author | ilotterytea <iltsu@alright.party> | 2024-04-20 22:47:34 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-04-20 22:47:34 +0500 |
| commit | d76037b36feaa71923325f3f6073085a68810917 (patch) | |
| tree | 672492cfa62f6296075b76c8c0e9befbfaeb3b88 /src/main.cpp | |
| parent | 4e13a51282043550314ccb8178db7b7879949efc (diff) | |
feat: irc client (wip)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index f3eff06..34839eb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,11 @@ #include <iostream> +#include "irc/client.hpp" + int main(int argc, char *argv[]) { std::cout << "hi world\n"; + + RedpilledBot::IRC::Client client("", ""); + return 0; } |
