1 2 3 4 5 6 7 8
use clap::Args; #[derive(Args, Default)] pub struct DoctorArgs { /// Emit machine-readable JSON output #[arg(long)] pub json: bool, }