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

@ -1,9 +1,9 @@
use std::io;
use taskchampion::{server, taskstorage, Replica, ServerConfig};
use taskchampion::{server, storage, Replica, ServerConfig};
use tempdir::TempDir;
pub(super) fn test_replica() -> Replica {
let storage = taskstorage::InMemoryStorage::new();
let storage = storage::InMemoryStorage::new();
Replica::new(Box::new(storage))
}