File indexing completed on 2025-01-19 04:58:07
0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0002 // SPDX-FileCopyrightText: 2023 Harald Sitter <sitter@kde.org> 0003 0004 #include <QCoreApplication> 0005 0006 #include <sentrypostman.h> 0007 0008 int main(int argc, char **argv) 0009 { 0010 QCoreApplication app(argc, argv); 0011 0012 SentryPostman postman; 0013 postman.run(); 0014 0015 return app.exec(); 0016 }