Files
bakery-ia/services/recipes/app/models/__init__.py
2025-08-13 17:39:35 +02:00

25 lines
501 B
Python

# services/recipes/app/models/__init__.py
from .recipes import (
Recipe,
RecipeIngredient,
ProductionBatch,
ProductionIngredientConsumption,
ProductionSchedule,
RecipeStatus,
ProductionStatus,
MeasurementUnit,
ProductionPriority
)
__all__ = [
"Recipe",
"RecipeIngredient",
"ProductionBatch",
"ProductionIngredientConsumption",
"ProductionSchedule",
"RecipeStatus",
"ProductionStatus",
"MeasurementUnit",
"ProductionPriority"
]