Files
audible-util/src/cli.rs

15 lines
239 B
Rust

use std::path::PathBuf;
use clap::Parser;
#[derive(Parser)]
pub struct Cli {
/// Path to aaxc file
#[clap(short, long)]
pub aaxc_path: PathBuf,
/// voucher file
#[clap(long)]
pub voucher_path: Option<PathBuf>,
}