This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/src/config/mod.rs
2017-07-17 14:53:18 +01:00

24 lines
421 B
Rust

use serde_yaml;
pub mod read;
pub mod validate;
pub mod consts;
#[derive(Debug, Serialize, Deserialize)]
pub struct Config {
foo: String
}
impl Config {
fn new(raw: String) -> Config {
return serde_yaml::from_str(&raw).unwrap();
}
}
pub fn get_config() {
let config_str = read::read();
let config = Config::new(config_str);
println!("{:?}", config);
validate::validate(config);
}