lariv-rs 0.1.0

Compile-time plugin web application framework built on Axum, SeaORM, Maud, and HTMX
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! SeaORM entities for blog articles and hierarchical tags.
pub mod blog;
pub mod blog_tag;
pub mod blog_tag_link;

pub use blog::Entity as BlogEntity;
pub use blog::Model as Blog;
pub use blog_tag::Entity as BlogTagEntity;
pub use blog_tag::Model as BlogTag;
pub use blog_tag_link::Entity as BlogTagLinkEntity;
pub use blog_tag_link::Model as BlogTagLink;