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)) }