Files
storkit/server/src/http/health.rs
2026-02-16 16:55:59 +00:00

10 lines
177 B
Rust

use poem::handler;
/// Health check endpoint.
///
/// Returns a static "ok" response to indicate the server is running.
#[handler]
pub fn health() -> &'static str {
"ok"
}