summary refs log tree commit diff stats
path: root/src/config_file.rs
blob: 2244893c1d7740a82c8c2b0d64b0150c4d479ab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
use serde_derive::{Deserialize, Serialize};

#[derive(Deserialize, Serialize)]
pub struct Config {
    pub templates: Template,
}

#[derive(Deserialize, Serialize)]
pub struct Template {
    pub section: String,
    pub chapter: String,
}