Basic json deserialization

This commit is contained in:
2024-12-24 12:38:19 +01:00
commit 606f99e3a9
7 changed files with 557 additions and 0 deletions

14
src/cli.rs Normal file
View 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>,
}