mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
8 lines
198 B
Python
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]
|