ptcg-tools/src/cli.rs
Felipe Contreras Salinas 7bd717e4db
download index
Signed-off-by: Felipe Contreras Salinas <felipe@bstr.cl>
2025-12-27 01:48:17 -03:00

18 lines
350 B
Rust

//! CLI parameters
use clap::{Parser, Subcommand};
#[derive(Debug, Parser)]
#[command(version, about, long_about = None)]
pub struct Args {
#[command(subcommand)]
pub command: Command,
}
#[derive(Debug, Subcommand, PartialEq)]
pub enum Command {
/// Downloads the card data
DownloadData,
/// Terminal User Interface
Tui,
}