16 lines
276 B
Python
16 lines
276 B
Python
"""
|
|
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",
|
|
|
|
] |