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