diff options
Diffstat (limited to 'src/health.rs')
| -rw-r--r-- | src/health.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/health.rs b/src/health.rs index daa2f43..ddf949a 100644 --- a/src/health.rs +++ b/src/health.rs @@ -1,6 +1,6 @@ -use axum::{response::IntoResponse, Json}; +use axum::{Json, response::IntoResponse}; use serde_json::json; pub async fn health_handler() -> impl IntoResponse { Json(json!({"status": "ok"})) -}
\ No newline at end of file +} |
