1
0
mirror of https://github.com/home-assistant/core.git synced 2025-09-22 19:39:36 +00:00
Files
core/homeassistant/components/velux/const.py
2024-03-08 10:35:23 -05:00

10 lines
227 B
Python

"""Constants for the Velux integration."""
from logging import getLogger
from homeassistant.const import Platform
DOMAIN = "velux"
PLATFORMS = [Platform.COVER, Platform.LIGHT, Platform.SCENE]
LOGGER = getLogger(__package__)