cooked/entities/src/prelude.rs

9 lines
357 B
Rust
Raw Normal View History

2024-10-22 15:18:23 +02:00
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.0
2024-10-31 16:00:26 +01:00
pub use super::ingredients::Entity as Ingredients;
pub use super::recipe_ingredients::Entity as RecipeIngredients;
2024-10-22 15:18:23 +02:00
pub use super::recipe_steps::Entity as RecipeSteps;
pub use super::recipe_tags::Entity as RecipeTags;
pub use super::recipies::Entity as Recipies;
2024-10-31 16:00:26 +01:00
pub use super::tags::Entity as Tags;