Remove Default from TomlUserStoreConfig

This commit is contained in:
Lennart K
2025-02-11 12:57:20 +01:00
parent 9ff04f3bbb
commit 63c8f8b5f2

View File

@@ -16,7 +16,7 @@ struct TomlDataModel {
principals: Vec<User>,
}
#[derive(Debug, Clone, Deserialize, Serialize, Default)]
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct TomlUserStoreConfig {
pub path: String,
}