summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
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;
}