Files
bakery-ia/services/production/app/models/__init__.py

20 lines
437 B
Python
Raw Normal View History

2025-08-21 20:28:14 +02:00
# ================================================================
# services/production/app/models/__init__.py
# ================================================================
"""
Production service models
"""
from .production import (
ProductionBatch,
ProductionSchedule,
ProductionCapacity,
2025-08-22 15:31:52 +02:00
QualityCheck
2025-08-21 20:28:14 +02:00
)
__all__ = [
"ProductionBatch",
"ProductionSchedule",
"ProductionCapacity",
2025-08-22 15:31:52 +02:00
"QualityCheck"
2025-08-21 20:28:14 +02:00
]