use structopt::StructOpt;
#[derive(Debug, StructOpt)]
#[structopt(
name = "blinc",
about = "Blinks USB notifier light with different colors depending on command exit code"
)]
pub(crate) enum Opt {
Blinc {
#[structopt(short, long)]
init: Option<String>,
#[structopt(short, long, default_value = ".blinc")]
config: String,
},
}