OrangeGuidanceTomestone/server/src/config.rs

11 lines
177 B
Rust

use std::path::PathBuf;
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct Config {
pub address: String,
pub packs: PathBuf,
pub database: String,
}