Initial import

This commit is contained in:
2026-03-30 22:51:56 -04:00
commit 08e2910b9d
103 changed files with 35475 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
mod app;
mod ui;
mod window;
fn main() {
tracing_subscriber::fmt::init();
let app = app::MangoTuneApp::new();
std::process::exit(app.run());
}