mirror of
https://github.com/home-assistant/core.git
synced 2026-05-20 07:20:14 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
12 lines
273 B
Python
12 lines
273 B
Python
"""Constants for the Android TV Remote integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "androidtv_remote"
|
|
|
|
CONF_APPS = "apps"
|
|
CONF_ENABLE_IME: Final = "enable_ime"
|
|
CONF_ENABLE_IME_DEFAULT_VALUE: Final = True
|
|
CONF_APP_NAME = "app_name"
|
|
CONF_APP_ICON = "app_icon"
|