From 7404a0e1b324ded78f6d579b4da2dcbafe5f72ca Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 27 Feb 2026 06:43:17 +0800 Subject: Add storage build and write commands --- src/cmds/in/storage_rw.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/cmds/in/storage_rw.rs (limited to 'src/cmds/in/storage_rw.rs') 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, +} -- cgit