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