ztp/src/routes/health_check.rs

6 lines
140 B
Rust
Raw Normal View History

2023-03-24 19:22:28 +00:00
use axum::{http::StatusCode, response::IntoResponse};
pub(crate) async fn health_check() -> impl IntoResponse {
(StatusCode::OK, ())
}