summaryrefslogtreecommitdiffstats
path: root/examples/hierarchical-env/main.rs
blob: 2bdfed811e1c1976f1477e94cdf6e4ca66315316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate config;
extern crate serde;

mod settings;

use settings::Settings;

fn main() {
    let settings = Settings::new();

    // Print out our settings
    println!("{:?}", settings);
}