1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mod cli; mod core; use clap::Parser; use cli::args::Args; use cli::matches::matches_command; fn main() { let cli: Args = Args::parse(); matches_command(&cli.command); }