From 6ebb560217aa1c2efc7ec10cbcdf09a3f15e6f5b Mon Sep 17 00:00:00 2001 From: tymmkang Date: Sat, 22 Mar 2025 02:47:07 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 642dbc0..275247d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,7 +47,7 @@ pub fn router() -> Router { } async fn root() -> axum::response::Html { - let current_time = Local::now().format("%Y-%m-%d %H:%M:%S").to_string(); + let current_time = Local::now().format("%Y-%m-%d %H:%M:%S !!!").to_string(); println!("Current Time: {}", current_time); axum::response::Html(format!("

Current Time: {}

", current_time)) }