mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
7 lines
80 B
Rust
7 lines
80 B
Rust
|
use clap::Subcommand;
|
||
|
|
||
|
#[derive(Subcommand, Debug)]
|
||
|
struct Opt {}
|
||
|
|
||
|
fn main() {}
|