This is the main thrust of the library. I know it is a lot of changes, but I was running out of time and had to hammer them all in.
9 lines
110 B
Rust
9 lines
110 B
Rust
mod blog;
|
|
mod post;
|
|
mod root;
|
|
|
|
|
|
pub use self::blog::Blog;
|
|
pub use self::post::Post;
|
|
pub use self::root::Root;
|