//! `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)]pubstructLicenseArgs{/// Print the CC BY 4.0 text covering the method.
#[arg(long)]pubmethod:bool,
/// Print the MIT text covering the distribution.
#[arg(long)]pubpayload:bool,
/// Print the notices for every third-party source the payload derives from.
#[arg(long)]pubthird_party:bool,
}