From 34f9ea901c5cf1f444817d64e91ad070ff2685f5 Mon Sep 17 00:00:00 2001 From: rustmailer Date: Wed, 10 Sep 2025 16:36:33 +0800 Subject: [PATCH] update main.rs add print info --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 115a0e4..2494399 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,9 @@ async fn main() -> RustMailerResult<()> { info!("Starting rustmailer-server"); info!("Version: {}", rustmailer_version!()); info!("Git: [{}]", env!("GIT_HASH")); - + info!("Project: https://rustmailer.com"); + info!("GitHub: https://github.com/rustmailer/rustmailer"); + if let Err(error) = initialize().await { eprintln!("{:?}", error); return Err(error);