mirror of
https://invent.kde.org/marcoa/a-la-karte.git
synced 2026-03-27 01:03:09 +00:00
20 lines
401 B
C++
20 lines
401 B
C++
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
// SPDX-FileCopyrightText: 2026 A-La-Karte Contributors
|
||
|
|
|
||
|
|
#include <QCoreApplication>
|
||
|
|
|
||
|
|
#include "inputdaemon.h"
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
QCoreApplication app(argc, argv);
|
||
|
|
QCoreApplication::setApplicationName(QStringLiteral("alakarte"));
|
||
|
|
|
||
|
|
InputDaemon daemon;
|
||
|
|
if (!daemon.init()) {
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
return app.exec();
|
||
|
|
}
|