summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 34839eb2dfd37b151b2d540fe5852d726132521a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

#include "irc/client.hpp"

int main(int argc, char *argv[]) {
  std::cout << "hi world\n";

  RedpilledBot::IRC::Client client("", "");

  return 0;
}