1 2 3 4 5 6 7 8 9 10
use city3d_stac::cli; use std::process; #[tokio::main] async fn main() { if let Err(e) = cli::run().await { eprintln!("Error: {e}"); process::exit(1); } }