mocha 0.1.0

an HTTP mock server
Documentation
1
2
3
4
5
6
use actix_web::{HttpResponse, Result};

/// This route is responsible for listing all currently stored mocks
pub fn health() -> Result<HttpResponse> {
    Ok(HttpResponse::Ok().body("OK"))
}