Files
core/homeassistant/components/inels/const.py
2025-10-23 16:55:29 +02:00

15 lines
230 B
Python

"""Constants for the iNELS integration."""
import logging
from homeassistant.const import Platform
DOMAIN = "inels"
TITLE = "iNELS"
PLATFORMS: list[Platform] = [
Platform.SWITCH,
]
LOGGER = logging.getLogger(__package__)