//! Arguments for `rk guide`.
useclap::Args;/// Print a runbook with what detection knows filled in, or list them.
#[derive(Debug, Args)]pubstructGuideArgs{/// The runbook to print; omit it and pass --list to see the names.
pubname:Option<String>,
/// List the runbooks instead of printing one.
#[arg(long)]publist:bool,
/// Select the technology's lines where the runbook branches; defaults
/// to detection from the version file.
#[arg(long)]pubtech:Option<String>,
/// Select the forge's lines where the runbook branches; defaults to
/// detection from the git remote.
#[arg(long)]pubforge:Option<String>,
/// The project path substituted for <repo>; defaults to detection from
/// the git remote.
#[arg(long)]pubrepo:Option<String>,
}