rename taskstorage to storage

This commit is contained in:
Dustin J. Mitchell 2021-01-10 21:11:55 -05:00
parent a318ceebe2
commit 15ffc62279
10 changed files with 32 additions and 36 deletions

View file

@ -9,7 +9,7 @@ synchronize with one another.
# Task Storage
The [`taskstorage`](crate::taskstorage) module supports pluggable storage for a replica's data.
The [`storage`](crate::storage) module supports pluggable storage for a replica's data.
An implementation is provided, but users of this crate can provide their own implementation as well.
# Server
@ -30,7 +30,7 @@ mod replica;
pub mod server;
mod task;
mod taskdb;
pub mod taskstorage;
pub mod storage;
mod utils;
mod workingset;