1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/spider/const.py
2021-12-04 13:43:48 +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.SWITCH, Platform.SENSOR]