mirror of
https://github.com/home-assistant/core.git
synced 2025-07-05 12:27:07 +00:00
14 lines
231 B
Python
14 lines
231 B
Python
"""Constants for the Kodi platform."""
|
|
|
|
DOMAIN = "kodi"
|
|
|
|
CONF_WS_PORT = "ws_port"
|
|
|
|
DEFAULT_PORT = 8080
|
|
DEFAULT_SSL = False
|
|
DEFAULT_TIMEOUT = 5
|
|
DEFAULT_WS_PORT = 9090
|
|
|
|
EVENT_TURN_OFF = "kodi.turn_off"
|
|
EVENT_TURN_ON = "kodi.turn_on"
|