move src/tape/helpers/snapshot_reader.rs to src/backup/snapshot_reader.rs

This commit is contained in:
Dietmar Maurer
2021-09-14 07:42:06 +02:00
parent 51a2d9e375
commit cef5c72682
8 changed files with 12 additions and 24 deletions

View File

@ -21,15 +21,12 @@ use pbs_tape::{
};
use crate::{
backup::{
DataStore,
},
backup::{DataStore, SnapshotReader},
server::WorkerTask,
tape::{
TAPE_STATUS_DIR,
MAX_CHUNK_ARCHIVE_SIZE,
COMMIT_BLOCK_SIZE,
SnapshotReader,
MediaPool,
MediaId,
MediaCatalog,

View File

@ -5,13 +5,8 @@ use anyhow::{format_err, Error};
use pbs_datastore::DataBlob;
use crate::{
backup::DataStore,
tape::{
CatalogSet,
SnapshotReader,
},
};
use crate::backup::{DataStore, SnapshotReader};
use crate::tape::CatalogSet;
/// Chunk iterator which use a separate thread to read chunks
///