(name inspired by dialoguer
;D)
Configuer is a tiny lib which will help you organize your configuration data
Configuer::new
creates new instance of Configuer. You must provide T
parameter which specify data model.
```rust use configuer::Configuer; use serde::{Deserialize, Serialize};
// Model must implement Serialize, Deserialize, CLone and Default. Debug is unneeded
struct MyData { user_name: String, }
fn main() { let mut config = Configuer::withfile("myIniFileName").oncreate(|| { println!("I see you open this app very first time, please pass your name: ...");
MyData {
user_name: "Default user name".into(),
}
});
println!("{:?}", config.data);
config.save();
} ```