mirror of
https://github.com/Snigdha-OS/snigdhaos-assistant.git
synced 2025-09-06 04:35:17 +02:00
12 lines
245 B
C++
12 lines
245 B
C++
#include "snigdhaosassistant.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
SetupAssistant w(nullptr, a.arguments().length() > 1 ? a.arguments()[1] : "");
|
|
w.show();
|
|
return a.exec();
|
|
}
|