zola/src/config.rs

18 lines
266 B
Rust
Raw Normal View History

2016-12-06 05:51:33 +00:00
// use std::path::Path;
// use errors::{Result};
#[derive(Debug, PartialEq)]
pub struct Config {
pub title: String,
pub base_url: String,
}
//impl Config {
// pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Config> {
// Ok(())
// }
//}