mirror of
https://github.com/home-assistant/core.git
synced 2026-06-04 22:53:54 +01:00
a434a0ab90
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
14 lines
234 B
Python
14 lines
234 B
Python
"""Constants for the Kodi integration."""
|
|
|
|
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"
|