mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-22 08:14:20 +01:00
6 lines
111 B
Python
6 lines
111 B
Python
from enum import Enum
|
|
|
|
class Channels(str, Enum):
|
|
TICKER = "ticker"
|
|
TRADES = "trades"
|
|
BOOK = "book" |