This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-03 04:47:53 +03:00

10 lines
203 B
Rust

use axum::{response::IntoResponse, Json};
use serde_json::json;
pub async fn health_route() -> impl IntoResponse {
Json(json!({
"ready": true,
"reason": "Everything is OK"
}))
}