mirror of https://github.com/home-assistant/core
14 lines
309 B
Python
14 lines
309 B
Python
"""Constants for the Android TV Remote integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
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"
|