blob: 86f7068a07e2e299caad1844e757a7ff6c00962d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
use std::{fs::File, path::PathBuf};
use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize, Serialize, Default)]
pub struct GlobalConfig {
pub brand: String,
pub database_path: PathBuf,
pub library_path: PathBuf,
pub admin_username: String,
pub admin_password: String,
pub cookie_key: String,
}
pub fn load_global_config() -> GlobalConfig {
serde_json::from_reader(File::open("data/config.json").unwrap()).unwrap()
}
|