zola/src/config.rs
2016-12-06 14:51:33 +09:00

18 lines
266 B
Rust

// 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(())
// }
//}