implemented primary event loop for server operations

This commit is contained in:
bettercallous
2024-04-08 20:17:05 +00:00
parent 45567b98b9
commit c315be1dcd
3 changed files with 21 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ int main(int ac, char **av)
try {
server.parseArgs(ac, av);
server.init();
server.run();
} catch (std::exception& e) {
std::cerr << e.what() << std::endl;
return 1;