2022-02-11 18:47:34 +00:00
|
|
|
use clap::{Parser, Subcommand};
|
2021-11-30 18:30:19 +00:00
|
|
|
|
|
|
|
#[derive(Parser)]
|
2024-01-17 14:06:56 +00:00
|
|
|
#[command(version, about, long_about = None)]
|
2022-09-02 20:37:23 +00:00
|
|
|
#[command(propagate_version = true)]
|
2021-11-30 18:30:19 +00:00
|
|
|
struct Cli {
|
2022-09-02 20:37:23 +00:00
|
|
|
#[command(subcommand)]
|
2021-11-30 18:30:19 +00:00
|
|
|
command: Commands,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subcommand)]
|
|
|
|
enum Commands {
|
|
|
|
/// Adds files to myapp
|
2022-07-23 00:36:26 +00:00
|
|
|
Add { name: Option<String> },
|
2021-11-30 18:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 } => {
|
2024-05-04 19:59:40 +00:00
|
|
|
println!("'myapp add' was used, name is: {name:?}");
|
2021-11-30 18:30:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|