Skip to main content

Mountain/IPC/Common/
mod.rs

1#![allow(non_snake_case)]
2
3//! Shared IPC abstractions used across `IPC/`. Each submodule owns one
4//! concept; callers spell the full path (`IPC::Common::HealthStatus::Foo`).
5
6pub mod ConnectionStatus;
7
8pub mod HealthStatus;
9
10pub mod MessageType;
11
12pub mod PerformanceMetrics;
13
14pub mod ServiceInfo;