ptcg-tools/src/cli.rs

19 lines
350 B
Rust
Raw Normal View History

2025-04-28 19:02:32 -04:00
//! CLI parameters
use clap::{Parser, Subcommand};
2025-04-28 19:02:32 -04:00
#[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,
2025-04-28 19:02:32 -04:00
}