diff options
author | metamuffin <metamuffin@disroot.org> | 2023-08-01 21:52:53 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-08-01 21:52:53 +0200 |
commit | 6eafafe5297c54aa5cb38790c45ba189b47d755e (patch) | |
tree | e79428752295c185aed6713f24b1202d2a0a35b3 /server/src/config.rs | |
parent | ff9060ea0987e29e4d468ff7c9fed7cc7109bf2b (diff) | |
download | jellything-6eafafe5297c54aa5cb38790c45ba189b47d755e.tar jellything-6eafafe5297c54aa5cb38790c45ba189b47d755e.tar.bz2 jellything-6eafafe5297c54aa5cb38790c45ba189b47d755e.tar.zst |
remote downloa
Diffstat (limited to 'server/src/config.rs')
-rw-r--r-- | server/src/config.rs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/server/src/config.rs b/server/src/config.rs deleted file mode 100644 index 05c56bc..0000000 --- a/server/src/config.rs +++ /dev/null @@ -1,27 +0,0 @@ -/* - This file is part of jellything (https://codeberg.org/metamuffin/jellything) - which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2023 metamuffin <metamuffin.org> -*/ -use serde::{Deserialize, Serialize}; -use std::{collections::HashMap, fs::File, path::PathBuf}; - -#[derive(Debug, Deserialize, Serialize, Default)] -pub struct GlobalConfig { - pub brand: String, - pub slogan: String, - - pub asset_path: PathBuf, - pub database_path: PathBuf, - pub library_path: PathBuf, - - pub admin_username: String, - pub admin_password: String, - pub cookie_key: String, - pub login_expire: i64, - pub remote_credentials: HashMap<String, (String, String, bool)>, -} - -pub fn load_global_config() -> GlobalConfig { - serde_json::from_reader(File::open("data/config.json").unwrap()).unwrap() -} |