From 8cbba8dc8900b98e23e6ee38d6f02537ba936c1c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 30 Jun 2026 06:01:32 +0800 Subject: refactor(rola-cli): replace GeneralRenderer with StructuralRenderer and use public modules --- rola-cli/src/lib.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'rola-cli/src/lib.rs') diff --git a/rola-cli/src/lib.rs b/rola-cli/src/lib.rs index b472169..02c479a 100644 --- a/rola-cli/src/lib.rs +++ b/rola-cli/src/lib.rs @@ -5,16 +5,12 @@ use mingling::{ res::ResExitCode, }; +pub mod bucket_mgr; +pub mod error; pub mod output; pub mod res; pub mod tokio_wrapper; -mod bucket_mgr; -use bucket_mgr::*; - -mod error; -use error::*; - use crate::output::display::markdown; pub const EC_COMMAND_NOT_FOUND: i32 = 1000; -- cgit