jannie

jannie (mirror)
Log | Files | Refs | README | LICENSE

args.rs (279B)


      1 use std::path::PathBuf;
      2 
      3 #[derive(clap::Parser, Debug)]
      4 #[command(version)]
      5 #[command(about = "Enforce clean workspace", long_about = None)]
      6 pub struct Args {
      7     /// Configuration and inventory
      8     #[arg(short, long, default_value = "~/.config/jannie")]
      9     pub dir: PathBuf,
     10 }