10 lines
177 B
Rust
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"
|
|
}
|