Files

13 lines
168 B
C++
Raw Permalink Normal View History

2018-09-15 20:49:15 +02:00
#include <QCoreApplication>
#include "server.h"
2018-09-15 20:49:15 +02:00
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
Server server;
2018-09-15 20:49:15 +02:00
return app.exec();
2018-09-15 20:49:15 +02:00
}