From 0b8e6e7d18abb94bd99553dc1d2b0ba5d4f265ea Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 18 Jun 2026 02:47:32 +0800 Subject: refactor: extract shared utilities and add space-system crate Extract rola-vcs/internal_macros into shared utils crates (shared_constants, shared_macros, space-system) and implement the Bucket enum with async space management --- rola-bucket/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rola-bucket/src/lib.rs') diff --git a/rola-bucket/src/lib.rs b/rola-bucket/src/lib.rs index c45452c..1f3470f 100644 --- a/rola-bucket/src/lib.rs +++ b/rola-bucket/src/lib.rs @@ -12,5 +12,8 @@ //! //! This module does **not** implement any **specific transport method**; it only implements the workflow for file storage and retrieval. +mod bucket; +pub use bucket::*; + mod protocol; pub use protocol::*; -- cgit