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

15 lines
371 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-08-08 09:08:41 +02:00
__all__ = [
"forecasts_router",
2025-10-06 15:27:01 +02:00
"forecasting_operations_router",
"analytics_router",
2025-08-08 09:08:41 +02:00
]