[#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:
15
src/lib.rs
Normal file
15
src/lib.rs
Normal 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;
|
||||
Reference in New Issue
Block a user