ptcg-tools/src/cli.rs

16 lines
324 B
Rust
Raw Normal View History

2025-04-28 19:02:32 -04:00
//! CLI parameters
use clap::Parser;
#[derive(Debug, Parser)]
#[command(version, about, long_about = None)]
pub struct Args {
/// Edition code
pub code: String,
/// Card number within the edition
pub number: u8,
///Override the slug for the card
#[arg(short, long)]
pub slug: Option<String>,
}