Ref: Vereinheitlicht Feldnamen in der General-Struct.

This commit is contained in:
2025-08-20 17:20:08 +02:00
parent 8abff469de
commit 9be8f94ce4

View File

@@ -37,14 +37,14 @@ pub struct General {
/// Log-Level für die Anwendung /// Log-Level für die Anwendung
pub log_level: String, pub log_level: String,
/// Pfad zum Einhängepunkt /// Pfad zum Einhängepunkt
pub mount_path: String, pub mount_point: String,
} }
impl Default for General { impl Default for General {
fn default() -> Self { fn default() -> Self {
Self { Self {
log_level: "info".to_string(), log_level: "info".to_string(),
mount_path: get_default_mount_path(), mount_point: get_default_mount_path(),
} }
} }
} }