natter/src/config/raw.rs

25 lines
656 B
Rust
Raw Normal View History

use serde::Deserialize;
use serde::Serialize;
/// This is the struct for the writer.toml config file that ends up in each site's root directory.
#[derive(Deserialize, Serialize)]
pub(crate) struct RawConfig {
2023-10-18 20:30:32 -04:00
site_title: String,
author: Option<String>,
email: Option<String>,
2023-10-23 21:51:15 -04:00
pub(super) use_relative_paths: Option<bool>,
pub(super) web_root: Option<String>,
}
2023-10-18 20:30:32 -04:00
impl Default for RawConfig {
fn default() -> Self {
RawConfig {
2023-10-18 20:30:32 -04:00
site_title: "My super awesome website".to_owned(),
author: None,
email: None,
2023-10-23 21:51:15 -04:00
use_relative_paths: None,
web_root: None,
2023-10-18 20:30:32 -04:00
}
}
}