//! Check command options
useclap::Parser;/// Check command options
#[derive(Parser, Debug, Clone)]pubstructCheckOpts{/// Comma-separated list of checks to run
#[arg(long)]pubchecks:Option<String>,
/// Fail fast on first error
#[arg(long)]pubfail_fast:bool,
}