summaryrefslogtreecommitdiffstats
path: root/src/config.rs
blob: 0d25e78f2b3f9c60b57e3b3ce3a29bac52151274 (plain)
1
2
3
4
5
6
7
8
9
10
#[derive(Debug)]
pub struct Config {
}

impl Default for Config {
    fn default() -> Self {
        Config { }
    }
}