1 2 3 4 5 6 7 8 9
#[path = "../app.rs"] mod app; fn main() { if let Err(error) = app::run() { eprintln!("Error: {error}"); std::process::exit(1); } }