1
2
3
4
5
6
//! Generalization of a state machine for a consensus engine.

mod impls;
mod traits;

pub use self::{impls::*, traits::*};