From 76e78fe53c03c9b4c7fa029709f06ee86ce9c865 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 27 Feb 2026 06:17:06 +0800 Subject: Add storage system with chunk-based file storage --- systems/storage/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 systems/storage/src/lib.rs (limited to 'systems/storage/src/lib.rs') diff --git a/systems/storage/src/lib.rs b/systems/storage/src/lib.rs new file mode 100644 index 0000000..4f89971 --- /dev/null +++ b/systems/storage/src/lib.rs @@ -0,0 +1,2 @@ +pub mod error; +pub mod store; -- cgit