Create new services: inventory, recipes, suppliers
This commit is contained in:
25
services/recipes/app/models/__init__.py
Normal file
25
services/recipes/app/models/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# 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"
|
||||
]
|
||||
Reference in New Issue
Block a user