Files
zero2prod/src/routes/health_check.rs
2025-08-21 15:38:12 +02:00

6 lines
127 B
Rust

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