File indexing completed on 2024-05-19 05:39:08

0001 /*
0002     SPDX-FileCopyrightText: 2018 David Edmundson <davidedmundson@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #include "startup.h"
0008 
0009 #include <QCoreApplication>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QCoreApplication app(argc, argv);
0014 
0015     new Startup(&app);
0016     app.exec();
0017 }