Add more services
This commit is contained in:
22
services/production/app/models/__init__.py
Normal file
22
services/production/app/models/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# ================================================================
|
||||
# services/production/app/models/__init__.py
|
||||
# ================================================================
|
||||
"""
|
||||
Production service models
|
||||
"""
|
||||
|
||||
from .production import (
|
||||
ProductionBatch,
|
||||
ProductionSchedule,
|
||||
ProductionCapacity,
|
||||
QualityCheck,
|
||||
ProductionAlert
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ProductionBatch",
|
||||
"ProductionSchedule",
|
||||
"ProductionCapacity",
|
||||
"QualityCheck",
|
||||
"ProductionAlert"
|
||||
]
|
||||
Reference in New Issue
Block a user