6 lines
127 B
Rust
6 lines
127 B
Rust
use axum::{http::StatusCode, response::IntoResponse};
|
|
|
|
pub async fn health_check() -> impl IntoResponse {
|
|
StatusCode::OK
|
|
}
|