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

16 lines
276 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
from .predictions import router as predictions_router
__all__ = [
"forecasts_router",
"predictions_router",
]