Files
bakery-ia/services/production/app/services/__init__.py
2025-08-22 15:31:52 +02:00

12 lines
302 B
Python

# ================================================================
# services/production/app/services/__init__.py
# ================================================================
"""
Business logic services
"""
from .production_service import ProductionService
__all__ = [
"ProductionService"
]