This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
neuron-rs/crates/neuron-api/src/routes/health.rs
T

7 lines
145 B
Rust

use axum::Json;
use serde_json::{json, Value};
pub async fn health() -> Json<Value> {
Json(json!({ "status": "ok", "version": "1.0.0" }))
}