All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
7 lines
129 B
Rust
7 lines
129 B
Rust
use axum::Json;
|
|
use serde_json::{Value, json};
|
|
|
|
pub async fn healthcheck() -> Json<Value> {
|
|
Json(json!({"healthy": true}))
|
|
}
|