1 2 3 4 5 6 7 8 9 10 11
#![deny(warnings)] extern crate git_clean; use git_clean::*; fn main() { let matches = cli::build_cli().get_matches(); run(&matches).unwrap_or_else(|e| print_and_exit(&e)); }