This commit is contained in:
2024-10-22 21:54:32 +03:00
commit d9b23d4a24
24 changed files with 507 additions and 0 deletions

9
xmpd-core/src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
fn main() {
let args = std::env::args();
if args.len() > 1 {
// gui
} else {
// cli
}
}