1 2 3 4 5 6
use crate::protocol::ToolResult; /// Stub: health check. pub async fn handle() -> ToolResult { ToolResult::text(r#"{"status":"ok"}"#) }