Files
bakery-ia/services/forecasting/app/api/__init__.py
2025-10-06 15:27:01 +02:00

15 lines
371 B
Python

"""
Forecasting API Layer
HTTP endpoints for demand forecasting and prediction operations
"""
from .forecasts import router as forecasts_router
from .forecasting_operations import router as forecasting_operations_router
from .analytics import router as analytics_router
__all__ = [
"forecasts_router",
"forecasting_operations_router",
"analytics_router",
]