From 1e9c97c21f8a4e55420712b054895ff8b4f9a849 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 19 Jun 2026 01:40:38 +0800 Subject: feat(rola-bucket): add bucket bind management Implement bucket bind CRUD operations and config loading, along with CLI integration for listing, setting, and removing bucket bindings. --- rola-bucket/src/bucket.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'rola-bucket/src/bucket.rs') diff --git a/rola-bucket/src/bucket.rs b/rola-bucket/src/bucket.rs index b70afd8..fe892f0 100644 --- a/rola-bucket/src/bucket.rs +++ b/rola-bucket/src/bucket.rs @@ -4,9 +4,11 @@ use crate::AsyncBucketTransferProtocol; use crate::LocalFileSystemProtocol; use space_system::SpaceRootTest; -mod init; -// pub use init::*; +pub mod bind; +pub mod config; +pub mod init; +mod idmap; mod space; /// Represents the state of a bucket in the transfer protocol. -- cgit