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

7 lines
76 B
Rust
Raw Normal View History

2026-02-16 16:24:21 +00:00
use poem::handler;
#[handler]
pub fn health() -> &'static str {
"ok"
}