mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
16 lines
269 B
C++
16 lines
269 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2015 ownCloud, Inc.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include "httpserver.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
HttpServer server;
|
|
return app.exec();
|
|
}
|