use clap::{Parser, Subcommand};
#[derive(Parser, Debug)]
#[command(name = "Time Tracker")]
#[command(version, about = "Simple CLI Timetracker", long_about = None)]
pub struct Args {
#[command(subcommand)]
pub command: Option<Commands>,
}
#[derive(Subcommand, Debug)]
pub enum Commands {
Go,
Pause,
Stop,
Status {
day: Option<String>,
week: Option<u32>,
year: Option<i32>,
},
Tui,
}