1 2 3 4 5 6 7
use clap::Parser; use termcolors::format; fn main() { let args = format::Args::parse(); print!("{}", format::format(args)); }