OrangeGuidanceTomestone/server/src/config.rs

11 lines
177 B
Rust
Raw Normal View History

2022-09-03 12:59:06 +00:00
use std::path::PathBuf;
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct Config {
2023-01-20 20:13:52 +00:00
pub address: String,
2022-09-03 12:59:06 +00:00
pub packs: PathBuf,
pub database: String,
}