Files
bakery-ia/services/training/app/api/__init__.py

16 lines
471 B
Python
Raw Normal View History

2025-08-08 09:08:41 +02:00
"""
Training API Layer
HTTP endpoints for ML training operations and WebSocket connections
2025-08-08 09:08:41 +02:00
"""
2025-10-06 15:27:01 +02:00
from .training_jobs import router as training_jobs_router
from .training_operations import router as training_operations_router
from .models import router as models_router
from .websocket_operations import router as websocket_operations_router
2025-08-08 09:08:41 +02:00
__all__ = [
2025-10-06 15:27:01 +02:00
"training_jobs_router",
"training_operations_router",
"models_router",
"websocket_operations_router"
2025-08-08 09:08:41 +02:00
]