diff options
Diffstat (limited to 'crates/rocie-client/src/models/mod.rs')
| -rw-r--r-- | crates/rocie-client/src/models/mod.rs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/crates/rocie-client/src/models/mod.rs b/crates/rocie-client/src/models/mod.rs index 135d612..53b0c13 100644 --- a/crates/rocie-client/src/models/mod.rs +++ b/crates/rocie-client/src/models/mod.rs @@ -2,8 +2,48 @@ pub mod barcode; pub use self::barcode::Barcode; pub mod barcode_id; pub use self::barcode_id::BarcodeId; +pub mod content; +pub use self::content::Content; +pub mod content_one_of; +pub use self::content_one_of::ContentOneOf; +pub mod content_one_of_1; +pub use self::content_one_of_1::ContentOneOf1; +pub mod cooklang_recipe; +pub use self::cooklang_recipe::CooklangRecipe; +pub mod cookware; +pub use self::cookware::Cookware; +pub mod ingredient; +pub use self::ingredient::Ingredient; +pub mod ingredient_one_of; +pub use self::ingredient_one_of::IngredientOneOf; +pub mod ingredient_one_of_1; +pub use self::ingredient_one_of_1::IngredientOneOf1; +pub mod ingredient_one_of_1_not_registered_product; +pub use self::ingredient_one_of_1_not_registered_product::IngredientOneOf1NotRegisteredProduct; +pub mod ingredient_one_of_2; +pub use self::ingredient_one_of_2::IngredientOneOf2; +pub mod ingredient_one_of_2_recipe_reference; +pub use self::ingredient_one_of_2_recipe_reference::IngredientOneOf2RecipeReference; +pub mod ingredient_one_of_registered_product; +pub use self::ingredient_one_of_registered_product::IngredientOneOfRegisteredProduct; +pub mod item; +pub use self::item::Item; +pub mod item_one_of; +pub use self::item_one_of::ItemOneOf; +pub mod item_one_of_1; +pub use self::item_one_of_1::ItemOneOf1; +pub mod item_one_of_2; +pub use self::item_one_of_2::ItemOneOf2; +pub mod item_one_of_3; +pub use self::item_one_of_3::ItemOneOf3; +pub mod item_one_of_4; +pub use self::item_one_of_4::ItemOneOf4; pub mod login_info; pub use self::login_info::LoginInfo; +pub mod metadata; +pub use self::metadata::Metadata; +pub mod name_and_url; +pub use self::name_and_url::NameAndUrl; pub mod password_hash; pub use self::password_hash::PasswordHash; pub mod product; @@ -24,8 +64,20 @@ pub mod recipe; pub use self::recipe::Recipe; pub mod recipe_id; pub use self::recipe_id::RecipeId; +pub mod recipe_parent; +pub use self::recipe_parent::RecipeParent; +pub mod recipe_parent_id; +pub use self::recipe_parent_id::RecipeParentId; +pub mod recipe_parent_stub; +pub use self::recipe_parent_stub::RecipeParentStub; pub mod recipe_stub; pub use self::recipe_stub::RecipeStub; +pub mod section; +pub use self::section::Section; +pub mod step; +pub use self::step::Step; +pub mod timer; +pub use self::timer::Timer; pub mod unit; pub use self::unit::Unit; pub mod unit_amount; |
