use aoko::no_std::algebraic::sum::TimeUnit;
use clap::Parser;
#[derive(Parser)]
#[clap(disable_help_flag = true, version = "0.1.4", author = "hzqd <hzqelf@yeah.net>")]
pub struct Args {
#[clap(short, long, default_value = "")]
pub str_to_hex: String,
#[clap(short, long, default_value = "")]
pub hex_to_str: String,
#[clap(short, long, default_value = "micros")]
pub time: TimeUnit,
}
pub fn get_args() -> Args {
Args::parse()
}