테스트
All checks were successful
Build and Push / Build Docker image (push) Successful in 44s

This commit is contained in:
2025-03-22 02:51:49 +09:00
parent 6ebb560217
commit 009f5c89d6

View File

@@ -47,7 +47,7 @@ pub fn router() -> Router {
} }
async fn root() -> axum::response::Html<String> { async fn root() -> axum::response::Html<String> {
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); println!("Current Time: {}", current_time);
axum::response::Html(format!("<h1>Current Time: {}</h1>", current_time)) axum::response::Html(format!("<h1>Current Time: {}</h1>", current_time))
} }