18 lines
266 B
Rust
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(())
|
|
// }
|
|
//}
|