Skip to main content

spec_driven_docs/cli/
verify.rs

1//! `verify` subcommand: parse-shape.
2//!
3//! Holds the clap derive struct only. No I/O, no business logic.
4
5use camino::Utf8PathBuf;
6
7/// Verify an installed instance offline.
8#[derive(Debug, clap::Args)]
9pub struct VerifyArgs {
10    /// The instance to verify; absolute, or the working directory.
11    #[arg(long, default_value = ".")]
12    pub target: Utf8PathBuf,
13}