cli.rs 678 B

123456789101112131415161718192021222324
  1. use std::path::PathBuf;
  2. use clap::Parser;
  3. #[derive(Parser)]
  4. #[command(about = "A cashu mint written in rust", author = env!("CARGO_PKG_AUTHORS"), version = env!("CARGO_PKG_VERSION"))]
  5. pub struct CLIArgs {
  6. #[arg(
  7. short,
  8. long,
  9. help = "Use the <directory> as the location of the database",
  10. required = false
  11. )]
  12. pub work_dir: Option<PathBuf>,
  13. #[arg(
  14. short,
  15. long,
  16. help = "Use the <file name> as the location of the config file",
  17. required = false
  18. )]
  19. pub config: Option<PathBuf>,
  20. #[arg(short, long, help = "Recover Greenlight from seed", required = false)]
  21. pub recover: Option<String>,
  22. }