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