From: Grégory Burri Date: Wed, 9 Sep 2020 11:48:52 +0000 (+0200) Subject: use of emojis... X-Git-Url: http://git.euphorik.ch/index.cgi?p=rtx3080.git;a=commitdiff_plain;h=27e81f19ce38f8237d060d7832d211426819ac6f use of emojis... --- diff --git a/src/main.rs b/src/main.rs index 057d68b..642a6e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,7 +23,7 @@ type Result = std::result::Result>; #[derive(Debug, Deserialize, Serialize)] struct Config { smtp_login: String, - smtp_password: String + smtp_password: String, } impl Config { @@ -82,9 +82,9 @@ fn main() -> Result<()> { ).collect(); if match_items.is_empty() { - println!("No matches -_-´´"); + println!("No matches 😿"); } else if send_email(&match_items[..], &config.smtp_login, &config.smtp_password) { - println!("Some matches has been found! An e-mail has been sent!"); + println!("Some matches has been found 😺! An e-mail has been sent!"); return Ok(()) } else { println!("Unable to send e-mail");