summaryrefslogtreecommitdiff
path: root/src/health.rs
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-14 20:35:00 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-14 20:35:00 +0300
commit1c2873b3059f3e4d6bd02307ec5b22f761ce1c80 (patch)
treede196a57b76fcacbbc842bbb5bf2641c8f82be91 /src/health.rs
parent50ce8cb96b2b218751c2fc2a6b19372f51846acc (diff)
feat: Update routes and fix issues
Diffstat (limited to 'src/health.rs')
-rw-r--r--src/health.rs4
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
+}