7 lines
152 B
Python
7 lines
152 B
Python
|
"""Constants for the Android TV Remote integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final = "androidtv_remote"
|