mirror of
https://github.com/PeacefulBeastGames/audible-util.git
synced 2026-02-03 23:39:05 +00:00
15 lines
239 B
Rust
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>,
|
|
}
|