From e8bf835fb3680342834c891292fab209c0aa9941 Mon Sep 17 00:00:00 2001 From: Berack96 Date: Tue, 30 Sep 2025 17:37:36 +0200 Subject: [PATCH] Add BinanceWrapper to market API exports --- src/app/markets/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/markets/__init__.py b/src/app/markets/__init__.py index 86a40e8..57f04b7 100644 --- a/src/app/markets/__init__.py +++ b/src/app/markets/__init__.py @@ -1,9 +1,10 @@ from .base import BaseWrapper from .coinbase import CoinBaseWrapper +from .binance import BinanceWrapper from .cryptocompare import CryptoCompareWrapper from app.utils.wrapper_handler import WrapperHandler -__all__ = [ "MarketAPIs", "BaseWrapper", "CoinBaseWrapper", "CryptoCompareWrapper" ] +__all__ = [ "MarketAPIs", "BinanceWrapper", "CoinBaseWrapper", "CryptoCompareWrapper" ] # TODO se si vuole usare un aggregatore di dati di mercato, si può aggiungere qui facendo una classe extra (simile a questa) che per ogni chiamata chiama tutti i wrapper e aggrega i risultati