From 581e40cb7d00fb2dde09305c3506c59c88aa309a Mon Sep 17 00:00:00 2001 From: tymmkang Date: Sat, 22 Mar 2025 02:33:31 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9A=94=EC=B2=AD=EC=9D=84=20=EB=B0=9B?= =?UTF-8?q?=EC=9C=BC=EB=A9=B4=20=EC=BD=98=EC=86=94=EC=97=90=20=EC=B6=9C?= =?UTF-8?q?=EB=A0=A5=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= 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 ac3e321..642dbc0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,8 +47,8 @@ pub fn router() -> Router { } async fn root() -> axum::response::Html { - 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)) }