Files
storkit/server/src/http/health.rs

10 lines
177 B
Rust
Raw Normal View History

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