This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2024_Stanislav_Mykhailenko/Lesson_6/Task_1/Server/main.cpp

11 lines
197 B
C++
Raw Normal View History

2024-07-29 12:03:10 +00:00
#include <QCoreApplication>
#include <server.h>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Server server;
server.start("0.0.0.0", 8081);
return a.exec();
}