server: Allow to store recipes

This commit is contained in:
traxys 2023-06-22 22:29:22 +02:00
parent 1c4d4a71e5
commit 82b466f52c
9 changed files with 281 additions and 1 deletions

View file

@ -3,4 +3,7 @@
pub use super::household::Entity as Household;
pub use super::household_members::Entity as HouseholdMembers;
pub use super::ingredient::Entity as Ingredient;
pub use super::recipe::Entity as Recipe;
pub use super::recipe_ingerdients::Entity as RecipeIngerdients;
pub use super::recipe_steps::Entity as RecipeSteps;
pub use super::user::Entity as User;