pacifica-rs 1.0.0

rust implementation of PacificA: Replication in Log-Based Distributed Storage Systems
1
2
3
4
5
6
7
8
9
mod state_machine;
mod entry;
mod error;

pub use self::state_machine::StateMachine;
pub use self::entry::Entry;

pub use self::error::ErrorSubject;
pub use self::error::UserStateMachineError;