From 9e9fe4d3922f97242ef9fdb9cfb147715d1aa6d3 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 12 Nov 2025 21:58:19 +0100 Subject: [PATCH] write new main.rs --- installer/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 installer/src/main.rs diff --git a/installer/src/main.rs b/installer/src/main.rs new file mode 100644 index 0000000..e07c803 --- /dev/null +++ b/installer/src/main.rs @@ -0,0 +1,7 @@ +#[tokio::main(flavor = "current_thread")] +async fn main() { + if let Err(e) = installer::main_cli().await { + eprintln!("{e:?}"); + std::process::exit(1); + } +}