move exchange module content to exchange package and the interface to a new module

This commit is contained in:
xsmile 2017-10-07 18:07:29 +02:00
parent ac32850034
commit 34c774c067
3 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ from typing import List
import arrow
from freqtrade.exchanges import Exchange
from freqtrade.exchanges.bittrex import Bittrex
from freqtrade.exchange.bittrex import Bittrex
from freqtrade.exchange.interface import Exchange
logger = logging.getLogger(__name__)

View File

@ -5,7 +5,7 @@ import arrow
import requests
from bittrex.bittrex import Bittrex as _Bittrex
from freqtrade.exchanges import Exchange
from freqtrade.exchange.interface import Exchange
logger = logging.getLogger(__name__)