get_config
``rust
pub fn main() {
// There should be either:
// - a file named
config.tomlin the current directory;
// - a path passed to
std::env::args().nth(1).
let config: Config = get_config().unwrap();
println!("{:?}", config);
}
//
Deserializeis required by
cargo add serde --features derive`
struct Config { hello: String, } ```