libset 0.1.6

A configuration file management library for Rust applications.
Documentation
1
2
3
4
5
6
7
use libset::{Config, Error};

fn main() -> Result<(), Error> {
    let config = Config::new("org.example.Demo", 1, None)?;
    config.clean()?;
    Ok(())
}