Index: src/main.rs ================================================================== --- src/main.rs +++ src/main.rs @@ -6,10 +6,8 @@ use stacked_errors:: Result; // main function stub that executes main code from lib fn main () -> Result<()> { smol::block_on(Compat::new(async { - smtp2tg::async_main().await.unwrap() - })); - - Ok(()) + smtp2tg::async_main().await + })) }