spec-driven-docs 0.4.3

Spec-driven documentation: current specs, immutable decision records, and executable gates kept coherent for people and coding agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `license` subcommand: parse-shape.
//!
//! Holds the clap derive struct only. No I/O, no business logic.

/// Print the license terms this binary carries.
#[derive(Debug, Clone, Copy, clap::Args)]
pub struct LicenseArgs {
    /// Print the CC BY 4.0 text covering the method.
    #[arg(long)]
    pub method: bool,

    /// Print the MIT text covering the distribution.
    #[arg(long)]
    pub payload: bool,
}