I was writing it in the build command's rust files for convenience, but now its getting long enough to warrant moving it into its final location.
8 lines
197 B
Rust
8 lines
197 B
Rust
mod convert;
|
|
mod definition;
|
|
mod page;
|
|
mod render_context;
|
|
pub(crate) use convert::convert_blog_post_page_to_render_context;
|
|
pub(crate) use definition::BlogPost;
|
|
pub(crate) use page::BlogPostPage;
|