#![cfg_attr(test, allow(clippy::large_futures))]
pub const PROTOCOL_VERSION: u32 = crate::SERVER_PROTOCOL_VERSION;
#[cfg(feature = "server-protocol")]
mod handler;
#[cfg(feature = "server-protocol")]
pub use handler::*;
#[cfg(feature = "server-protocol-client")]
pub mod client {
pub use crate::authority_client::*;
}
#[cfg(feature = "server-protocol")]
mod lifecycle;
#[cfg(feature = "server-protocol")]
pub use lifecycle::*;