| 1234567891011121314151617181920212223242526272829303132333435 |
- use std::path::PathBuf;
- use clap::Parser;
- #[derive(Parser)]
- #[command(about = "A cashu mint written in rust", author = env!("CARGO_PKG_AUTHORS"), version = env!("CARGO_PKG_VERSION"))]
- pub struct CLIArgs {
- #[arg(
- short,
- long,
- help = "Use the <directory> as the location of the database",
- required = false
- )]
- pub work_dir: Option<PathBuf>,
- #[cfg(feature = "sqlcipher")]
- #[arg(short, long, help = "Database password for sqlcipher", required = true)]
- pub password: String,
- #[arg(
- short,
- long,
- help = "Use the <file name> as the location of the config file",
- required = false
- )]
- pub config: Option<PathBuf>,
- #[arg(short, long, help = "Recover Greenlight from seed", required = false)]
- pub recover: Option<String>,
- #[arg(
- long,
- help = "Enable logging output",
- required = false,
- action = clap::ArgAction::SetTrue,
- default_value = "true"
- )]
- pub enable_logging: bool,
- }
|