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

@ -31,7 +31,6 @@ for more information about the design and usage of the tool.
*/
mod config;
mod errors;
mod replica;
pub mod server;
@ -41,9 +40,9 @@ mod taskdb;
mod utils;
mod workingset;
pub use config::ReplicaConfig;
pub use replica::Replica;
pub use server::{Server, ServerConfig};
pub use storage::StorageConfig;
pub use task::{Priority, Status, Tag, Task, TaskMut};
pub use workingset::WorkingSet;