mirror of
https://invent.kde.org/marcoa/a-la-karte.git
synced 2026-02-10 05:13:08 +00:00
19 lines
341 B
C++
19 lines
341 B
C++
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
// SPDX-FileCopyrightText: 2026 A-La-Karte Contributors
|
||
|
|
|
||
|
|
#include <QCoreApplication>
|
||
|
|
|
||
|
|
#include "gamecenterdaemon.h"
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
QCoreApplication app(argc, argv);
|
||
|
|
|
||
|
|
GameCenterDaemon daemon;
|
||
|
|
if (!daemon.init()) {
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
return app.exec();
|
||
|
|
}
|