summaryrefslogtreecommitdiff
path: root/src/cmds/in
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-27 06:43:17 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-27 06:43:17 +0800
commit7404a0e1b324ded78f6d579b4da2dcbafe5f72ca (patch)
tree3a5bbe87ec8e9b86e97f708907b725c002a2ba4e /src/cmds/in
parent84b004a421000c776f1009687562a47533d6cff7 (diff)
Add storage build and write commands
Diffstat (limited to 'src/cmds/in')
-rw-r--r--src/cmds/in/storage_rw.rs11
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>,
+}