1 2 3 4 5 6 7
use clap::Parser; use phpup::cli::Cli; fn main() { let Cli { config, subcmd } = Cli::parse(); subcmd.apply(config); }