mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
10 lines
179 B
C++
Executable file
10 lines
179 B
C++
Executable file
#include <singleapplication.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
SingleApplication app( argc, argv );
|
|
|
|
qWarning() << "Started a new instance";
|
|
|
|
return app.exec();
|
|
}
|