spec_driven_docs/cli/completions.rs
1//! `completions` subcommand: parse-shape.
2//!
3//! Holds the clap derive struct only. No I/O, no business logic.
4
5/// Generate shell completions.
6#[derive(Debug, Clone, Copy, clap::Args)]
7pub struct CompletionsArgs {
8 /// The shell to generate for.
9 #[arg(value_enum)]
10 pub shell: clap_complete::Shell,
11}