16 lines
324 B
Rust
16 lines
324 B
Rust
|
|
//! 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>,
|
||
|
|
}
|