1 2 3 4 5 6 7 8
fn main() { tracing_subscriber::fmt::init(); if let Err(e) = neocurl::run() { tracing::error!("Error occured: {:?}", e); std::process::exit(1); } }