1use clap::Arg; 2use lazy_static::lazy_static; 3 4lazy_static! { 5 pub static ref ARG_OUTPUT: Arg = Arg::new("output") 6 .short('o') 7 .long("output") 8 .required(false) 9 .help("Path to output"); 10}