From 009f5c89d68f44c0ee1ccc248825e5b12c2e0242 Mon Sep 17 00:00:00 2001 From: tymmkang Date: Sat, 22 Mar 2025 02:51:49 +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 275247d..642dbc0 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)) }