tinkr 0.0.43

Tinkr is a web framework for quickly building full-stack web applications with Leptos.
Documentation
1
2
3
4
5
6
7
use axum::{http::StatusCode, response::IntoResponse};

/// Standard health check endpoint handler
/// Returns 200 OK with "OK" body
pub async fn health_check() -> impl IntoResponse {
    (StatusCode::OK, "OK")
}