diff options
Diffstat (limited to 'common/src/config.rs')
-rw-r--r-- | common/src/config.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/src/config.rs b/common/src/config.rs index 467a2ec..682fdd7 100644 --- a/common/src/config.rs +++ b/common/src/config.rs @@ -17,7 +17,6 @@ pub struct GlobalConfig { #[serde(default = "return_true" )] pub tls: bool, #[serde(default = "default::asset_path")] pub asset_path: PathBuf, #[serde(default = "default::database_path")] pub database_path: PathBuf, - #[serde(default = "default::library_path")] pub library_path: PathBuf, #[serde(default = "default::temp_path")] pub temp_path: PathBuf, #[serde(default = "default::cache_path")] pub cache_path: PathBuf, #[serde(default = "default::media_path")] pub media_path: PathBuf, @@ -74,9 +73,6 @@ mod default { pub fn database_path() -> PathBuf { "data/database".into() } - pub fn library_path() -> PathBuf { - "data/library".into() - } pub fn cache_path() -> PathBuf { "data/cache".into() } |