2023-04-06 01:00:40 +00:00
|
|
|
"""Constants for the Android TV Remote integration."""
|
2024-03-08 13:51:32 +00:00
|
|
|
|
2023-04-06 01:00:40 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
DOMAIN: Final = "androidtv_remote"
|
2023-07-24 18:00:51 +00:00
|
|
|
|
|
|
|
CONF_ENABLE_IME: Final = "enable_ime"
|
|
|
|
CONF_ENABLE_IME_DEFAULT_VALUE: Final = True
|