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

#[cfg(test)]
impl Default for Config {
    fn default() -> Self {
        Config { }
    }
}