2022-02-11 18:47:34 +00:00
|
|
|
use clap::{Parser, Subcommand};
|
2021-11-30 18:30:19 +00:00
|
|
|
|
|
|
|
#[derive(Parser)]
|
2022-01-11 00:47:20 +00:00
|
|
|
#[clap(author, version, about, long_about = None)]
|
2022-02-10 17:51:40 +00:00
|
|
|
#[clap(propagate_version = true)]
|
2021-11-30 18:30:19 +00:00
|
|
|
struct Cli {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
command: Commands,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subcommand)]
|
|
|
|
enum Commands {
|
|
|
|
/// Adds files to myapp
|
|
|
|
Add { name: Option<String> },
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cli = Cli::parse();
|
|
|
|
|
|
|
|
// You can check for the existence of subcommands, and if found use their
|
2022-02-14 21:47:20 +00:00
|
|
|
// matches just as you would the top level cmd
|
2021-11-30 18:30:19 +00:00
|
|
|
match &cli.command {
|
|
|
|
Commands::Add { name } => {
|
|
|
|
println!("'myapp add' was used, name is: {:?}", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|