16 lines
312 B
Rust
16 lines
312 B
Rust
|
|
//! 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;
|