Files
DbMsgLib/messagingserver/main.cpp
2018-09-01 15:14:05 +02:00

12 lines
174 B
C++

#include <QCoreApplication>
#include <QDebug>
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
qDebug() << "hello from server";
return 0;
}