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