File indexing completed on 2025-05-04 04:59:03

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "dkim-verify/dkimmanagerkeydialog.h"
0008 #include <QApplication>
0009 #include <QCommandLineParser>
0010 int main(int argc, char **argv)
0011 {
0012     QApplication app(argc, argv);
0013 
0014     MessageViewer::DKIMManagerKeyDialog dlg;
0015     dlg.exec();
0016     app.exec();
0017     return 0;
0018 }