Compare commits

..

3 Commits

View File

@ -835,8 +835,14 @@ where
} }
} }
fn main() -> Result<(), String> { fn main() {
Application::<Prod>::default().run() match Application::<Prod>::default().run() {
Ok(_) => {}
Err(e) => {
eprintln!("{}", e);
std::process::exit(1);
}
}
} }
fn parse_server_configuration<F>( fn parse_server_configuration<F>(