Ferenc Szontágh
2024-06-27 920507bff803647c79dfce27c4c265b2caee7f8d
src/main.cpp
@@ -1,7 +1,14 @@
#include "Server.h"
#include <iostream>
#include <glog/logging.h>
int main() {
    Server server;
    server.run();
    try {
        LOG(INFO) << "Starting up server...";
        Server server;
        server.run();
    } catch (const std::exception& e) {
        LOG(FATAL) << "Exception: " << e.what();
    }
    return 0;
}
}