1use serde_derive::Deserialize; 2 3#[derive(Deserialize, Clone)] 4pub struct Config {} 5 6impl Config { 7 pub const fn new() -> Config { 8 Config {} 9 } 10} 11 12pub static DEF: Config = Config::new();