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 log_manager;
mod error;
mod task;

pub(crate) use log_manager::LogManager;

pub(crate) use error::LogManagerError;

pub(crate) use task::Task;