1//! Core type aliases and re-exports for the consensus layer. 2 3pub use openraft::BasicNode; 4 5/// Raft node identifier. Every node in a cluster must have a unique `NodeId`. 6pub type NodeId = u64;