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;
7pub mod HealthStatus;
8pub mod MessageType;
9pub mod PerformanceMetrics;
10pub mod ServiceInfo;