mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 18:39:30 +00:00
15 lines
230 B
Python
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__)
|