Files
core/homeassistant/components/spider/const.py
2024-03-08 14:33:51 +01:00

9 lines
199 B
Python

"""Constants for the Spider integration."""
from homeassistant.const import Platform
DOMAIN = "spider"
DEFAULT_SCAN_INTERVAL = 300
PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.SWITCH]