15 lines
371 B
Python
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",
|
|
] |