system-config 0.1.2

A library for storing application properties on disk.
Documentation
1
2
3
4
5
6
use system_config::Config;

fn main() {
    Config::write_clear_by_name("system-config-example").unwrap();
    Config::write_clear_by_name("system-config-multiple-example").unwrap();
}