mirror of
https://github.com/PeacefulBeastGames/audible-util.git
synced 2026-02-04 07:49:03 +00:00
Basic json deserialization
This commit is contained in:
14
src/cli.rs
Normal file
14
src/cli.rs
Normal file
@@ -0,0 +1,14 @@
|
||||
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>,
|
||||
}
|
||||
Reference in New Issue
Block a user