v0.1.3-pre.002

This commit is contained in:
2026-08-15 08:40:11 +02:00
parent ff94762b10
commit 8360f25f59
9 changed files with 725 additions and 41 deletions

View File

@@ -0,0 +1,8 @@
// file: crates/ksp-config-lib/src/error.rs
// version: 1
/// Error code used when a Config bootstrap argument is missing its value.
pub const ERROR_CODE_BOOTSTRAP_ARGUMENT_MISSING_VALUE: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("config", "bootstrap_argument_missing_value");
/// Error code used when a Config bootstrap path is empty, inaccessible, or resolves to an existing non-directory path.
pub const ERROR_CODE_BOOTSTRAP_INVALID_PATH: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("config", "bootstrap_invalid_path");