mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
10 lines
223 B
Python
10 lines
223 B
Python
#pylint: disable-next=wildcard-import,unused-wildcard-import
|
|
from bfxapi.enums import *
|
|
|
|
class Channel(str, Enum):
|
|
TICKER = "ticker"
|
|
TRADES = "trades"
|
|
BOOK = "book"
|
|
CANDLES = "candles"
|
|
STATUS = "status"
|