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

32 lines
574 B
Rust
Raw Normal View History

2017-07-17 09:52:22 +01:00
use serde_yaml;
2017-07-18 09:20:39 +01:00
use serde_yaml::Value;
2017-07-17 09:52:22 +01:00
pub mod read;
pub mod validate;
2017-07-17 09:59:54 +01:00
pub mod consts;
2017-07-17 09:52:22 +01:00
2017-07-18 09:20:39 +01:00
#[derive(Debug, Serialize, Deserialize, Default)]
2017-07-17 09:52:22 +01:00
pub struct Config {
2017-07-18 09:20:39 +01:00
raw: String,
input: Vec<String>,
2017-07-17 09:52:22 +01:00
}
impl Config {
2017-07-17 14:53:18 +01:00
fn new(raw: String) -> Config {
2017-07-18 09:20:39 +01:00
let raw_conf: Value = serde_yaml::from_str(&raw).unwrap();
return Config {
raw: raw,
input: read::get_inputs(raw_conf),
..Default::default()
};
2017-07-17 14:53:18 +01:00
}
2017-07-17 09:52:22 +01:00
}
2017-07-18 09:20:39 +01:00
pub fn get_config() -> Config {
2017-07-17 09:52:22 +01:00
let config_str = read::read();
2017-07-18 09:20:39 +01:00
return Config::new(config_str);
2017-07-17 09:52:22 +01:00
}