zero-to-production/src/routes/health_check.rs

6 lines
110 B
Rust
Raw Normal View History

2020-08-25 21:19:53 +00:00
use actix_web::HttpResponse;
pub async fn health_check() -> HttpResponse {
HttpResponse::Ok().finish()
}