From 9be8f94ce48406c86abf5f3e01118d5765f233f5 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Wed, 20 Aug 2025 17:20:08 +0200 Subject: [PATCH] Ref: Vereinheitlicht Feldnamen in der `General`-Struct. --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index 55feb3d..d30bb95 100644 --- a/src/config.rs +++ b/src/config.rs @@ -37,14 +37,14 @@ pub struct General { /// Log-Level für die Anwendung pub log_level: String, /// Pfad zum Einhängepunkt - pub mount_path: String, + pub mount_point: String, } impl Default for General { fn default() -> Self { Self { log_level: "info".to_string(), - mount_path: get_default_mount_path(), + mount_point: get_default_mount_path(), } } }