mirror of
https://github.com/openharmony/third_party_rust_clap.git
synced 2026-07-19 13:14:38 -04:00
d671b0d27b
This reduces the need for us to have `clap` as a dependency in `clap_derive`, preparing the way to fix #15.
7 lines
80 B
Rust
7 lines
80 B
Rust
use clap::Subcommand;
|
|
|
|
#[derive(Subcommand, Debug)]
|
|
struct Opt {}
|
|
|
|
fn main() {}
|