diff --git a/src/backup/read_chunk.rs b/src/backup/read_chunk.rs index 6d873b39..087d1cf5 100644 --- a/src/backup/read_chunk.rs +++ b/src/backup/read_chunk.rs @@ -12,13 +12,13 @@ pub trait ReadChunk { } pub struct LocalChunkReader { - store: DataStore, + store: Arc, crypt_config: Option>, } impl LocalChunkReader { - pub fn new(store: DataStore, crypt_config: Option>) -> Self { + pub fn new(store: Arc, crypt_config: Option>) -> Self { Self { store, crypt_config } } }