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

27 lines
932 B
Python
Raw Normal View History

2025-08-08 09:08:41 +02:00
"""
Forecasting API Layer
HTTP endpoints for demand forecasting and prediction operations
"""
from .forecasts import router as forecasts_router
2025-10-06 15:27:01 +02:00
from .forecasting_operations import router as forecasting_operations_router
from .analytics import router as analytics_router
2025-11-18 07:17:17 +01:00
from .validation import router as validation_router
from .historical_validation import router as historical_validation_router
from .webhooks import router as webhooks_router
from .performance_monitoring import router as performance_monitoring_router
from .retraining import router as retraining_router
2025-11-30 09:12:40 +01:00
from .enterprise_forecasting import router as enterprise_forecasting_router
2025-08-08 09:08:41 +02:00
__all__ = [
"forecasts_router",
2025-10-06 15:27:01 +02:00
"forecasting_operations_router",
"analytics_router",
2025-11-18 07:17:17 +01:00
"validation_router",
"historical_validation_router",
"webhooks_router",
"performance_monitoring_router",
"retraining_router",
2025-11-30 09:12:40 +01:00
"enterprise_forecasting_router",
2025-08-08 09:08:41 +02:00
]