1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-26 21:05:18 +00:00
Files
core/homeassistant/components/spider/const.py
2024-01-16 09:47:53 +01:00

8 lines
198 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]