Files
contextswitch/src/routes/health_check.rs
2022-01-17 20:01:17 +01:00

6 lines
102 B
Rust

use actix_web::HttpResponse;
pub async fn ping() -> HttpResponse {
HttpResponse::Ok().finish()
}