mirror of
https://github.com/home-assistant/core.git
synced 2026-04-20 19:14:59 +00:00
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
14 lines
271 B
Python
14 lines
271 B
Python
"""Constants for the Apple TV integration."""
|
|
|
|
DOMAIN = "apple_tv"
|
|
|
|
CONF_CREDENTIALS = "credentials"
|
|
CONF_IDENTIFIERS = "identifiers"
|
|
|
|
CONF_START_OFF = "start_off"
|
|
|
|
SIGNAL_CONNECTED = "apple_tv_connected"
|
|
SIGNAL_DISCONNECTED = "apple_tv_disconnected"
|
|
|
|
ATTR_TEXT = "text"
|