Skip to main content

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//! ## Stub
7//!
8//! Wire to real Cocoon gRPC health check when Cocoon is spawned.
9//! Currently returns `false` unconditionally.
10
11#[tauri::command]
12pub async fn cocoon_extension_host_health() -> Result<bool, String> { Ok(false) }