aboutsummaryrefslogtreecommitdiff
path: root/server/src/config.rs
blob: 1edf5e588cac50a93f055ee4ee760b79e5c56b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::{fs::File, path::PathBuf};

use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
pub struct GlobalConfig {
    pub brand: String,
    pub database_path: PathBuf,
    pub library_path: PathBuf,
}

pub fn load_global_config() -> GlobalConfig {
    serde_json::from_reader(File::open("data/config.json").unwrap()).unwrap()
}