mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-16 14:35:17 +00:00
10 lines
186 B
C++
10 lines
186 B
C++
#include <QGuiApplication>
|
|
#include <JellyfinQt/jellyfin.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
QGuiApplication app(argc, argv);
|
|
Jellyfin::registerTypes();
|
|
|
|
return app.exec();
|
|
}
|