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

#include "irc/client.hpp"

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

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

  client.run();

  return 0;
}