use crate::Log;
use openlegends_server::api::server::*;
pub fn about(log: &Log) -> String {
log.notice("Server about request".to_string());
about::Response::new().to_json().unwrap() }
pub fn status(log: &Log) -> String {
log.notice("Server status request".to_string());
status::Response::build(true).to_json().unwrap() }