ztp/src/routes/health_check.rs

6 lines
140 B
Rust

use axum::{http::StatusCode, response::IntoResponse};
pub(crate) async fn health_check() -> impl IntoResponse {
(StatusCode::OK, ())
}