mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 20:57:51 +00:00
10 lines
235 B
Python
10 lines
235 B
Python
"""Constants for the Android TV Remote integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "androidtv_remote"
|
|
|
|
CONF_ENABLE_IME: Final = "enable_ime"
|
|
CONF_ENABLE_IME_DEFAULT_VALUE: Final = True
|