rusty-relay-server 0.2.0

The http server for rusty-relay
1
2
3
4
5
use axum::{http::StatusCode, response::IntoResponse};

pub async fn health_handler() -> impl IntoResponse {
    (StatusCode::OK, "ok").into_response()
}