Ferenc Szontágh
2024-06-27 0c428a79ef2379c6c7be29712e83f8c39e43c580
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "Server.h"
#include <iostream>
#include <glog/logging.h>
 
int main() {
    try {
        LOG(INFO) << "Starting up server...";
        Server server;
        server.run();
    } catch (const std::exception& e) {
        LOG(FATAL) << "Exception: " << e.what();
    }
    return 0;
}