1 2 3 4 5 6 7 8
use colored::Colorize; use vizo::app::run; fn main() { if let Err(e) = run() { println!("{}: {}", "error".red().bold(), e); } }