1 2 3 4 5 6 7 8 9 10 11 12
use colored::*; use forge_tree::cli::Cli; fn main() { let app = Cli::new(); let matches = app.get_matches(); if let Err(e) = Cli::run(matches) { eprintln!("{} {}", "Error:".red().bold(), e); std::process::exit(1); } }