mirror of
https://github.com/clap-rs/clap
synced 2024-11-14 16:47:21 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
#[derive(clap::Parser)]
|
|
struct Opt {
|
|
#[command(flatten)]
|
|
sub: SubCmd,
|
|
}
|
|
|
|
#[derive(clap::Parser)]
|
|
enum SubCmd {}
|
|
|
|
fn main() {}
|