6 lines
110 B
Rust
6 lines
110 B
Rust
use actix_web::HttpResponse;
|
|
|
|
pub async fn health_check() -> HttpResponse {
|
|
HttpResponse::Ok().finish()
|
|
}
|