initial commit

This commit is contained in:
2026-03-25 19:46:15 +01:00
commit a513c66503
26 changed files with 2892 additions and 0 deletions

15
src/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "ui/Application.h"
#include <cstdio>
int main(int argc, char** argv) {
baudline::Application app;
if (!app.init(argc, argv)) {
std::fprintf(stderr, "Failed to initialize application\n");
return 1;
}
app.run();
app.shutdown();
return 0;
}