use std::path::PathBuf; use clap::Parser; #[derive(Parser, Debug)] #[command(version, about, long_about = None)] pub struct AppSettings { /// File of list of hosts #[arg(short, long)] pub ping_host_file: Option, }