1 2 3 4 5 6 7
mod app; fn main() -> std::io::Result<()> { let mut app = app::App::new()?; app.run()?; Ok(()) }