Initial commit. First draft v0.1

This commit is contained in:
2026-03-16 21:38:19 -04:00
parent 16b066cfea
commit 2098cb4ba9
8 changed files with 1052 additions and 0 deletions

14
main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "mainwindow.h"
#include <QApplication>
#include <QCoreApplication>
int main (int argc, char *argv[]) {
QApplication application (argc, argv);
QCoreApplication::setOrganizationName (QStringLiteral ("deeaitch"));
QCoreApplication::setApplicationName (QStringLiteral ("yourls-ui"));
MainWindow window;
window.show();
return application.exec();
}