mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
8 lines
157 B
Python
8 lines
157 B
Python
from .. enums import *
|
|
|
|
class Channel(str, Enum):
|
|
TICKER = "ticker"
|
|
TRADES = "trades"
|
|
BOOK = "book"
|
|
CANDLES = "candles"
|
|
STATUS = "status" |