File indexing completed on 2024-09-22 04:47:56

0001 /*
0002     SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "widgets/transportmanagementwidget.h"
0008 #include <QApplication>
0009 #include <QStandardPaths>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QApplication app(argc, argv);
0014     app.setApplicationName(QStringLiteral("addtransportnewng"));
0015     QStandardPaths::setTestModeEnabled(true);
0016     auto t = new MailTransport::TransportManagementWidget();
0017     t->show();
0018     app.exec();
0019     delete t;
0020 }