factor storage out to a trait object

This commit is contained in:
Dustin J. Mitchell 2020-01-05 14:58:24 -05:00
parent e228c99b83
commit 611b1cd68f
11 changed files with 177 additions and 108 deletions

View file

@ -10,7 +10,7 @@ mod replica;
mod server;
mod task;
mod taskdb;
mod taskstorage;
pub mod taskstorage;
mod tdb2;
pub use operation::Operation;