ttzzs's picture
Deploy Chronos2 Forecasting API v3.0.0 with new SOLID architecture
c40c447 verified
raw
history blame contribute delete
419 Bytes
"""
Mappers - Conversi贸n entre API Schemas y DTOs.
Los mappers se encargan de convertir entre la capa de presentaci贸n
(API schemas) y la capa de aplicaci贸n (DTOs), manteniendo las capas
desacopladas.
"""
from .forecast_mapper import ForecastMapper
from .anomaly_mapper import AnomalyMapper
from .backtest_mapper import BacktestMapper
__all__ = [
"ForecastMapper",
"AnomalyMapper",
"BacktestMapper",
]