1 2 3 4 5 6 7 8 9 10 11 12 13 14
use diffcopy::Config; use std::process; fn main() { let matches = diffcopy::build_clap(); let config = Config::new(matches); if let Err(e) = diffcopy::run(&config) { eprintln!("Error: {}", e); process::exit(1); } }