hermod-api 0.1.2

Rapid and seamless customer interaction, designed for CS 495 at The University of Alabama.
Documentation
1
2
3
4
5
6
7
8
use actix_web::HttpResponse;

use super::ApplicationResponse;

/// Get(/health_check) returns a 200 to indicate the application is running
pub async fn health_check() -> ApplicationResponse {
    Ok(HttpResponse::Ok().finish())
}