mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
13 lines
149 B
Rust
13 lines
149 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
struct Cli {
|
|
foo: Custom,
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
struct Custom;
|
|
|
|
fn main() {
|
|
Cli::parse();
|
|
}
|