Skip to main content

bijux_cli/api/
diagnostics.rs

1#![forbid(unsafe_code)]
2//! Read-only diagnostics and inventory query facade.
3
4/// State-path and corruption diagnostics query helpers.
5pub mod state_paths {
6    pub use crate::features::diagnostics::state_paths::{
7        env_map, resolve_state_paths, state_diagnostics, state_path_status_value,
8        ResolvedStatePaths,
9    };
10}
11
12pub use crate::features::diagnostics::{
13    parity_status_query, registry_inventory, route_inventory, state_diagnostics_query,
14    ParityStatusQuery, RegistryInventory, RouteInventory, StateDiagnosticsQuery, StatePathStatus,
15};