Skip to content

Commit

Permalink
binance: breakout into feed and broker mods like other backends
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Jun 9, 2023
1 parent 4392de6 commit f7686bb
Show file tree
Hide file tree
Showing 4 changed files with 609 additions and 520 deletions.
16 changes: 7 additions & 9 deletions piker/brokers/binance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@
"""
from .api import (
get_client,
# )
# from .feed import (
)
from .feed import (
get_mkt_info,
open_history_client,
open_symbol_search,
stream_quotes,
# )
# from .broker import (
)
from .broker import (
trades_dialogue,
# norm_trade_records,
)


Expand All @@ -43,13 +42,12 @@
'open_history_client',
'open_symbol_search',
'stream_quotes',
# 'norm_trade_records',
]


# tractor RPC enable arg
# `brokerd` modules
__enable_modules__: list[str] = [
'api',
# 'feed',
# 'broker',
'feed',
'broker',
]
Loading

0 comments on commit f7686bb

Please sign in to comment.