Mountain/Binary/IPC/HealthCommand/cocoon_extension_host_health.rs
1
2//! Tauri command - extension-host (Cocoon) health probe. Wire name
3//! kept snake_case to match Wind's `SharedProcessProxy` invoker.
4//!
5//! ## Stub
6//!
7//! Wire to real Cocoon gRPC health check when Cocoon is spawned.
8//! Currently returns `false` unconditionally.
9
10#[tauri::command]
11pub async fn cocoon_extension_host_health() -> Result<bool, String> { Ok(false) }