use StorageConfig instead of ReplicaConfig

This commit is contained in:
Dustin J. Mitchell
2021-01-10 21:48:28 -05:00
parent b004b6cb93
commit 02d9c577ab
6 changed files with 30 additions and 21 deletions

View File

@@ -2,11 +2,13 @@ use failure::Fallible;
use std::collections::HashMap;
use uuid::Uuid;
mod config;
mod inmemory;
mod kv;
mod operation;
pub use self::kv::KVStorage;
pub use config::StorageConfig;
pub use inmemory::InMemoryStorage;
pub use operation::Operation;