1 2 3 4 5 6 7 8 9 10 11
extern crate log; use uraeus::cli::{self, term}; fn main() { env_logger::init(); let result = cli::execute(); match result { Ok(()) => {} Err(e) => term::display_error(&e.to_string()), } }