DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Binary/IPC/HealthCommand.rs
1//! # HealthCommand - Wind SharedProcessProxy bridge
2//!
3//! Tauri commands invoked directly by Wind's `SharedProcessProxy`
4//! health-check pings. Each is a thin probe that maps the renderer's
5//! abstract service identifier onto Mountain's actual readiness state.
6//!
7//! Layout (one Tauri command per file, snake_case wire-bound names per
8//! the Naming-Convention exception):
9//! - `cocoon_extension_host_health::cocoon_extension_host_health`
10//! - `cocoon_search_service_health::cocoon_search_service_health`
11//! - `cocoon_debug_service_health::cocoon_debug_service_health`
12//! - `shared_process_service_health::shared_process_service_health`
13
14pub mod cocoon_debug_service_health;
15
16pub mod cocoon_extension_host_health;
17
18pub mod cocoon_search_service_health;
19
20pub mod shared_process_service_health;