Files
Marvin Möltgen 199e27e47e refactor: Simpler project structure (#3555)
* refactor: Simpler project structure

* fix dependabot
2023-01-09 17:44:58 +01:00

7 lines
180 B
C++

#include "my_application.h"
int main(int argc, char** argv) {
g_autoptr(MyApplication) app = my_application_new();
return g_application_run(G_APPLICATION(app), argc, argv);
}