mirror of
https://github.com/home-assistant/core.git
synced 2026-08-15 17:52:59 +01:00
15 lines
383 B
Python
15 lines
383 B
Python
"""Constants for the Radio Frequency integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.helpers.entity_component import EntityComponent
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
from .entity import RadioFrequencyTransmitterEntity
|
|
|
|
DOMAIN: Final = "radio_frequency"
|
|
|
|
DATA_COMPONENT: HassKey[EntityComponent[RadioFrequencyTransmitterEntity]] = HassKey(
|
|
DOMAIN
|
|
)
|