fix: format main.rs
All checks were successful
renovate / renovate (push) Successful in 24s
Continuous integration / Check (push) Successful in 31s
Continuous integration / Test Suite (push) Successful in 32s
Continuous integration / Rustfmt (push) Successful in 31s
Continuous integration / Clippy (push) Successful in 32s
Continuous integration / build (push) Successful in 35s

This commit is contained in:
Alex Wellnitz 2025-03-17 21:49:43 +01:00
parent 0aa50aad1c
commit 4d0a236e7c

View File

@ -60,11 +60,10 @@ fn index() -> String {
); );
let tour_str = format!("Beste Tour: {:?}", best_tour); let tour_str = format!("Beste Tour: {:?}", best_tour);
return tour_str; tour_str
} }
#[launch] #[launch]
fn rocket() -> _ { fn rocket() -> _ {
rocket::build().mount("/", routes![index]) rocket::build().mount("/", routes![index])
} }