mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2026-01-04 14:04:26 +01:00
22 lines
611 B
Python
22 lines
611 B
Python
|
|
class CommandTopicSpecs:
|
|
START: str = '/start'
|
|
STOP: str = '/stop'
|
|
CONFIG: str = '/config'
|
|
IMPORT: str = '/import'
|
|
STATUS: str = '/status'
|
|
HISTORY: str = '/history'
|
|
BALANCE_LIMIT: str = '/balance/limit'
|
|
BALANCE_PAPER: str = '/balance/paper'
|
|
COMMAND_SHORTCUT: str = '/command_shortcuts'
|
|
|
|
|
|
class TopicSpecs:
|
|
PREFIX: str = '{namespace}/{instance_id}'
|
|
COMMANDS: CommandTopicSpecs = CommandTopicSpecs()
|
|
LOGS: str = '/log'
|
|
MARKET_EVENTS: str = '/events'
|
|
NOTIFICATIONS: str = '/notify'
|
|
HEARTBEATS: str = '/hb'
|
|
EXTERNAL_EVENTS: str = '/external/event/*'
|