use structopt::StructOpt;
#[derive(Debug, StructOpt)]
#[structopt(
name = "Analog Clock",
about = "\nSee https://github.com/wongjiahau/analog-clock"
)]
pub struct CliOptions {
#[structopt(long, default_value = "nord-frost")]
pub theme: String,
#[structopt(long, default_value = "1000")]
pub tick: usize,
#[structopt(long)]
pub hide_second_hand: bool,
#[structopt(long)]
pub hide_hour_labels: bool,
#[structopt(long)]
pub show_minute_labels: bool,
}