[#1] Blog metadata can be stored using serde.

Created the initial blog data, posts and authors, and allows it to
be stored using serde.
This commit is contained in:
2025-08-22 10:46:38 -04:00
parent 35772ba1c6
commit 9dd87d0e42
10 changed files with 339 additions and 22 deletions

15
src/lib.rs Normal file
View File

@ -0,0 +1,15 @@
//! A blogging system that will allow you to write your blog in Markdown and then display it in HTML using Dioxus.
mod info;
mod adventurer;
mod tale;
mod tavern;
pub use crate::info::{get_name, get_version};
pub use crate::adventurer::Adventurer;
pub use crate::tale::Tale;
pub use crate::tavern::Tavern;