Files
core/homeassistant/components/samsung_exlink/const.py
T
2026-08-24 14:46:22 +02:00

13 lines
283 B
Python

"""Constants for the Samsung ExLink integration."""
import logging
from samsung_exlink import SamsungTV
from homeassistant.config_entries import ConfigEntry
LOGGER = logging.getLogger(__package__)
DOMAIN = "samsung_exlink"
type SamsungExLinkConfigEntry = ConfigEntry[SamsungTV]