aboutsummaryrefslogtreecommitdiff
path: root/server/src/main.cpp
blob: f34c433c57398db0044ade2da08ee462def077a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "include.h"
#include "util/io.h"
#include "util/commands.h"
#include "server/server.h"

int main(int argc, char *argv[]) {
  io::init(false);

  tcp::server server;
  server.start("6666");
  server.start("8981");

  std::cin.get();
}