feat: print launcher version on startup
Test and release / Run Tests (push) Successful in 2m28s
Test and release / Build and Release (push) Has been skipped

This commit is contained in:
Shy
2026-04-25 10:45:51 +02:00
parent 921dae56fe
commit 756afd8c24
+1 -1
View File
@@ -4,7 +4,7 @@ use shy_launcher::{config::Config, downloader};
#[tokio::main(flavor = "current_thread")] #[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), Box<dyn Error>> { async fn main() -> Result<(), Box<dyn Error>> {
println!("Starting app launcher..."); println!("---------- {} v{} ----------", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
let config = Config::load("config.json")?; let config = Config::load("config.json")?;
println!("Starting download..."); println!("Starting download...");