This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use structopt::StructOpt; | |
#[derive(StructOpt)] | |
struct Cli { | |
#[structopt(short = "d", long = "debug", )] | |
/// Enable debug mode | |
debug: bool, | |
#[structopt(subcommand)] // Note that we mark a field as a subcommand | |
action: Actions, | |
} |