12 lines
302 B
Python
12 lines
302 B
Python
# ================================================================
|
|
# services/production/app/services/__init__.py
|
|
# ================================================================
|
|
"""
|
|
Business logic services
|
|
"""
|
|
|
|
from .production_service import ProductionService
|
|
|
|
__all__ = [
|
|
"ProductionService"
|
|
] |