Skip to main content

bb_ops/protocols/
mod.rs

1//! Protocol implementations - `<Role>Runtime` bridges for concrete
2//! coordination protocols. Each lives in a sub-directory and
3//! self-registers via `inventory::submit!` per the standard
4//! component-authoring contract.
5
6
7
8pub mod global_registry;
9pub use global_registry::{
10    GlobalRegistryClient, GlobalRegistryServer, GlobalRegistryServerConfig, Handshake,
11    GLOBAL_REGISTRY_CLIENT_CREF, GLOBAL_REGISTRY_DOMAIN, GLOBAL_REGISTRY_SERVER_CREF,
12};
13
14pub mod constant_view;
15pub use constant_view::{ConstantView, ConstantViewError};