21 lines
488 B
Rust
21 lines
488 B
Rust
//! zebra-checkpoints arguments
|
|
//!
|
|
//! For usage please refer to the program help: `zebra-checkpoints --help`
|
|
|
|
#![deny(missing_docs)]
|
|
#![allow(clippy::try_err)]
|
|
|
|
use structopt::StructOpt;
|
|
|
|
/// zebra-checkpoints arguments
|
|
#[derive(Debug, StructOpt)]
|
|
pub struct Args {
|
|
/// Path to zcash-cli command
|
|
#[structopt(default_value = "zcash-cli", short, long)]
|
|
pub cli: String,
|
|
|
|
/// Passthrough args for `zcash-cli`
|
|
#[structopt(last = true)]
|
|
pub zcli_args: Vec<String>,
|
|
}
|