diff options
Diffstat (limited to 'src/cmds/in')
| -rw-r--r-- | src/cmds/in/storage_rw.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cmds/in/storage_rw.rs b/src/cmds/in/storage_rw.rs new file mode 100644 index 0000000..596c1f9 --- /dev/null +++ b/src/cmds/in/storage_rw.rs @@ -0,0 +1,11 @@ +use std::path::PathBuf; + +use just_enough_vcs::system::storage_system::store::ChunkingPolicy; + +pub struct JVStorageRWInput { + pub input: PathBuf, + pub storage: PathBuf, + pub output: PathBuf, + + pub chunking_policy: Option<ChunkingPolicy>, +} |
