You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mkbook/src/models/book.rs

8 lines
175 B
Rust

use super::frontmatter::FrontMatter;
use super::chapter::Chapter;
pub struct Book {
pub front: FrontMatter,
pub description: String,
pub chapters: Vec<Chapter>,
}