diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-22 18:06:53 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-22 18:06:53 +0100 |
commit | 34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7 (patch) | |
tree | b752d8587b984d36def9962118b0afc2f2953066 /server/src/config.rs | |
parent | a8402e7f17e978b839a605d4715ca51b4a76f1f3 (diff) | |
download | jellything-34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7.tar jellything-34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7.tar.bz2 jellything-34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7.tar.zst |
front page stuff
Diffstat (limited to 'server/src/config.rs')
-rw-r--r-- | server/src/config.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/src/config.rs b/server/src/config.rs index 86f7068..0534f22 100644 --- a/server/src/config.rs +++ b/server/src/config.rs @@ -5,6 +5,10 @@ use serde::{Deserialize, Serialize}; #[derive(Debug, Deserialize, Serialize, Default)] pub struct GlobalConfig { pub brand: String, + pub slogan: String, + pub icon: PathBuf, + pub asset_dir: PathBuf, + pub database_path: PathBuf, pub library_path: PathBuf, pub admin_username: String, |