mirror of
https://github.com/home-assistant/core.git
synced 2026-07-08 15:24:58 +01:00
13 lines
280 B
Python
13 lines
280 B
Python
"""Constants for the Denon RS-232 integration."""
|
|
|
|
import logging
|
|
|
|
from denon_rs232 import DenonReceiver
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
DOMAIN = "denon_rs232"
|
|
|
|
type DenonRS232ConfigEntry = ConfigEntry[DenonReceiver]
|