diff options
Diffstat (limited to 'common/src/config.rs')
-rw-r--r-- | common/src/config.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/src/config.rs b/common/src/config.rs new file mode 100644 index 0000000..b978a1e --- /dev/null +++ b/common/src/config.rs @@ -0,0 +1,24 @@ +/* + 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, 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)>, +} |