Create new services: inventory, recipes, suppliers
This commit is contained in:
37
services/recipes/app/schemas/__init__.py
Normal file
37
services/recipes/app/schemas/__init__.py
Normal file
@@ -0,0 +1,37 @@
|
||||
# services/recipes/app/schemas/__init__.py
|
||||
|
||||
from .recipes import (
|
||||
RecipeCreate,
|
||||
RecipeUpdate,
|
||||
RecipeResponse,
|
||||
RecipeIngredientCreate,
|
||||
RecipeIngredientResponse,
|
||||
RecipeSearchRequest,
|
||||
RecipeFeasibilityResponse
|
||||
)
|
||||
from .production import (
|
||||
ProductionBatchCreate,
|
||||
ProductionBatchUpdate,
|
||||
ProductionBatchResponse,
|
||||
ProductionIngredientConsumptionCreate,
|
||||
ProductionIngredientConsumptionResponse,
|
||||
ProductionScheduleCreate,
|
||||
ProductionScheduleResponse
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"RecipeCreate",
|
||||
"RecipeUpdate",
|
||||
"RecipeResponse",
|
||||
"RecipeIngredientCreate",
|
||||
"RecipeIngredientResponse",
|
||||
"RecipeSearchRequest",
|
||||
"RecipeFeasibilityResponse",
|
||||
"ProductionBatchCreate",
|
||||
"ProductionBatchUpdate",
|
||||
"ProductionBatchResponse",
|
||||
"ProductionIngredientConsumptionCreate",
|
||||
"ProductionIngredientConsumptionResponse",
|
||||
"ProductionScheduleCreate",
|
||||
"ProductionScheduleResponse"
|
||||
]
|
||||
Reference in New Issue
Block a user