From 27bd5024e04e4e7d236a9b18112c7b876bae5633 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 17 Jun 2026 22:22:45 +0800 Subject: docs: add module documentation and rename constants for clarity Add doc comments to lib, consts, and common modules Rename ROLA_DRAFT_DIR and ROLA_BINDED_BUCKET_FILE to DRAFT_META_DIR --- rola-vcs/src/lib.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'rola-vcs/src/lib.rs') diff --git a/rola-vcs/src/lib.rs b/rola-vcs/src/lib.rs index ac52569..4d8f5e3 100644 --- a/rola-vcs/src/lib.rs +++ b/rola-vcs/src/lib.rs @@ -1,9 +1,19 @@ +//! libroroalala + #![allow(unused)] +/// Rorolala - Bucket +/// +/// This module records the interaction logic of Rorolala Bucket +/// Bucket can be operated directly pub mod bucket { pub use rola_bucket::*; } +/// Rorolala - Draft +/// +/// This module records the interaction logic of Rorolala Workdraft +/// Workdraft can be operated directly pub mod draft { pub use rola_draft::*; } -- cgit