SQCSimulator2023/SQCSim-srv/main.cpp
MarcEricMartel b54f8c31e5 windoes
2023-10-29 14:54:36 -04:00

8 lines
169 B
C++

#include "server.h"
int main() {
std::unique_ptr<Server> server = std::make_unique<Server>();
if (server->Init() == 0)
if (server->Ready() == 0)
server->Run();
}