tape: add multi volume reader/writer implementations

We currently do not use it. Added anaways, to show the possibility.
This commit is contained in:
Dietmar Maurer
2021-02-04 08:36:35 +01:00
parent f47e035721
commit 983e929e25
3 changed files with 244 additions and 0 deletions

View File

@ -13,6 +13,12 @@ pub use chunk_archive::*;
mod snapshot_archive;
pub use snapshot_archive::*;
mod multi_volume_writer;
pub use multi_volume_writer::*;
mod multi_volume_reader;
pub use multi_volume_reader::*;
use std::collections::HashMap;
use anyhow::{bail, Error};