From 68daa10abfe3015beca966825d32cf67c9f5d5d7 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 18 Jun 2026 20:56:05 +0800 Subject: feat(bucket): implement bucket initialization and logging infrastructure Add bucket init logic with directory structure creation and log macros for tracing --- rola-utils/space-system/src/space/error.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'rola-utils/space-system/src/space/error.rs') diff --git a/rola-utils/space-system/src/space/error.rs b/rola-utils/space-system/src/space/error.rs index 33ee6e4..8e85010 100644 --- a/rola-utils/space-system/src/space/error.rs +++ b/rola-utils/space-system/src/space/error.rs @@ -11,6 +11,12 @@ pub enum SpaceError { #[error("Other: {0}")] Other(String), + + #[error("Require empty directory")] + RequireEmptyDirectory, + + #[error("Config file already exist")] + ConfigFileAlreadyExist, } impl PartialEq for SpaceError { -- cgit