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
//! SeaORM entities for users and roles.
pub mod role;
pub mod user;

pub use role::Entity as RoleEntity;
pub use role::Model as Role;
pub use user::Entity as UserEntity;
pub use user::Model as User;