Skip to main content

Mountain/Binary/IPC/
HealthCommand.rs

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