SQCSimulator2023/SQCSim-srv/main.cpp

8 lines
169 B
C++
Raw Normal View History

2023-09-24 08:45:40 -04:00
#include "server.h"
int main() {
2023-10-29 14:54:36 -04:00
std::unique_ptr<Server> server = std::make_unique<Server>();
2023-09-24 08:45:40 -04:00
if (server->Init() == 0)
if (server->Ready() == 0)
server->Run();
}