MeiliSearch/meilisearch-http/src/routes/health.rs

14 lines
332 B
Rust
Raw Normal View History

2020-12-12 13:32:06 +01:00
use actix_web::get;
use actix_web::{web, HttpResponse};
use crate::error::ResponseError;
pub fn services(cfg: &mut web::ServiceConfig) {
cfg.service(get_health);
}
#[get("/health")]
async fn get_health() -> Result<HttpResponse, ResponseError> {
Ok(HttpResponse::Ok().json(serde_json::json!({ "status": "available" })))
2020-12-12 13:32:06 +01:00
}