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

#[macro_use]
extern crate serde_derive;

mod settings;

use settings::Settings;

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

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