mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
23 lines
358 B
Rust
23 lines
358 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(name = "basic")]
|
|
struct Opt {
|
|
#[command(flatten)]
|
|
source: Source,
|
|
}
|
|
|
|
#[derive(clap::Args, Debug)]
|
|
#[group(required = true, name = "src")]
|
|
struct Source {
|
|
#[arg(short)]
|
|
git: String,
|
|
|
|
#[arg(short)]
|
|
path: String,
|
|
}
|
|
|
|
fn main() {
|
|
let opt = Opt::parse();
|
|
println!("{opt:?}");
|
|
}
|