//! Health check route.

use purwa::get;

#[get("/health")]
pub async fn health() -> &'static str {
    "ok"
}
