//! A quorum is a set of nodes a vote request or append-entries request has to contact to.
//! The most common quorum is **majority**.
//! A quorum set is a collection of quorums, e.g., the quorum set of the majority of `{a,b,c}` is
//! `{a,b}, {b,c}, {a,c}`.
pub use Coherent;
pub use FindCoherent;
pub use AsJoint;
pub use Joint;
pub use QuorumSet;