mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 05:22:44 +01:00
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
283 B
Python
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]
|