bridge-echo 0.2.0

HTTP bridge for Claude Code CLI
1
2
3
4
5
6
use axum::Json;
use serde_json::{json, Value};

pub async fn health() -> Json<Value> {
    Json(json!({"status": "ok"}))
}