Skip to main content

Mountain/Binary/IPC/
HealthCommand.rs

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