anitrack 0.1.7

CLI/TUI companion for ani-cli with watch-progress tracking
use clap::{Parser, Subcommand};

#[derive(Debug, Parser)]
#[command(
    name = "anitrack",
    version,
    about = "Launch ani-cli and track last seen show/episode"
)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Option<Command>,
}

#[derive(Debug, Subcommand)]
pub enum Command {
    Start,
    Next,
    Replay,
    List,
    Tui,
}