aboutsummaryrefslogtreecommitdiff
path: root/server-v1/source/main.cpp
blob: 73e4006dce0daead562f0ea99472340ce7f8ae80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "EpistmoolServer/Server.hpp"

#include <QCoreApplication>

using namespace Epistmool::Server;

int main(int argc, char* argv[])
{
	QCoreApplication app(argc, argv);
	Server server;
	return app.exec();
}