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(); }