/// Main entry point for the glint-mask command-line tool.
////// This binary provides a command-line interface for generating glint masks
/// from UAV and aerial imagery using various sensor configurations.
useglint_mask_tools::cli;usestd::process;fnmain(){matchcli::run(){Ok(())=>{}Err(e)=>{eprintln!("Error: {}", e);process::exit(1);}}}