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