Annotation For src/main.rs
Logged in as anonymous

Origin for each line in src/main.rs from check-in 3c858ed7c4:

1db9dbe390 2024-11-28    1: //! Simple SMTP-to-Telegram gateway. Can parse email and send them as telegram
1db9dbe390 2024-11-28    2: //! messages to specified chats, generally you specify which email address is
1db9dbe390 2024-11-28    3: //! available in configuration, everything else is sent to default address.
1db9dbe390 2024-11-28    4: 
3c858ed7c4 2026-07-31    5: use async_compat::Compat;
3c858ed7c4 2026-07-31    6: use stacked_errors:: Result;
3c858ed7c4 2026-07-31    7: 
3c858ed7c4 2026-07-31    8: // main function stub that executes main code from lib
8ea7b79fca 2026-01-02    9: fn main () -> Result<()> {
8ea7b79fca 2026-01-02   10: 	smol::block_on(Compat::new(async {
3c858ed7c4 2026-07-31   11: 		smtp2tg::async_main().await.unwrap()
8ea7b79fca 2026-01-02   12: 	}));
14ef340959 2026-01-01   13: 
14ef340959 2026-01-01   14: 	Ok(())
7620f854a7 2024-05-21   15: }