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