natter/src/config/definition.rs

9 lines
226 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 Config {
foo: String,
}