rudof_cli 0.3.2

RDF data shapes implementation in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::cli::parser::CommonArgsOutputForceOverWrite;
use clap::Args;
use clap_complete_command::Shell;

/// Arguments for the `completion` command
#[derive(Debug, Clone, Args)]
pub struct CompletionArgs {
    #[clap(value_parser = clap::value_parser!(Shell))]
    pub shell: Shell,

    #[command(flatten)]
    pub common: CommonArgsOutputForceOverWrite,
}