ttzzs's picture
Deploy Chronos2 Forecasting API v3.0.0 with new SOLID architecture
c40c447 verified
raw
history blame contribute delete
773 Bytes
"""
Data Transfer Objects (DTOs).
DTOs para transferir datos entre capas, evitando acoplamiento
entre la capa de presentación y el dominio.
"""
from .forecast_dtos import (
ForecastInputDTO,
ForecastOutputDTO,
MultiForecastInputDTO,
MultiForecastOutputDTO
)
from .anomaly_dtos import (
AnomalyDetectionInputDTO,
AnomalyDetectionOutputDTO,
AnomalyPointDTO
)
from .backtest_dtos import (
BacktestInputDTO,
BacktestOutputDTO,
BacktestMetricsDTO
)
__all__ = [
"ForecastInputDTO",
"ForecastOutputDTO",
"MultiForecastInputDTO",
"MultiForecastOutputDTO",
"AnomalyDetectionInputDTO",
"AnomalyDetectionOutputDTO",
"AnomalyPointDTO",
"BacktestInputDTO",
"BacktestOutputDTO",
"BacktestMetricsDTO",
]