feat: add diet entity and user lifestyle habits with data seeding support

This commit is contained in:
2025-12-19 13:52:48 +05:30
parent baccbee706
commit b9fbbbbbd6
6 changed files with 94 additions and 3 deletions

View File

@@ -1,9 +1,11 @@
//! User and session entities for authentication.
pub mod diet;
pub mod role;
pub mod session;
pub mod user;
pub use diet::Entity as Diet;
pub use role::Entity as Role;
pub use session::Entity as Session;
pub use user::Entity as User;