1
2
3
4
5
use clap::{Arg, Command};

pub fn build_cli() -> Command {
    Command::new("ucd-parser").arg(Arg::new("output").required(true))
}