From 27e81f19ce38f8237d060d7832d211426819ac6f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9gory=20Burri?= Date: Wed, 9 Sep 2020 13:48:52 +0200 Subject: [PATCH] use of emojis... --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); -- 2.43.0