1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00
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]