This commit is contained in:
2024-04-02 10:58:49 -04:00
parent fc7e45cd3f
commit a8e6572a53
5 changed files with 60 additions and 9 deletions

View File

@@ -6,7 +6,6 @@ pub struct Args {
/// set config file to use
#[arg(short, long, value_name = "FILE")]
pub config: Option<String>,
/// show current config file
#[arg(short = 'C', long)]
pub current_config: bool,
@@ -23,4 +22,8 @@ pub struct Args {
/// list closest files to date
#[arg(short = 'L', long)]
pub list_all: bool,
/// increase logging level
#[arg(short, long, action = clap::ArgAction::Count)]
pub verbose: u8,
}