general_macro/
general_macro.rs

1fn main() {
2    let config = config_tools::general_defaults! {
3        "host" => "127.0.0.1",
4        "port" => "8080",
5    };
6
7    config
8        .save("general-manual.ini")
9        .expect("Failed to save config.");
10
11    println!("{:#?}", config);
12}