mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 13:38:04 +00:00
11 lines
203 B
Python
11 lines
203 B
Python
"""Define constants for the SimpliSafe component."""
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "simplisafe"
|
|
|
|
DATA_CLIENT = "client"
|
|
|
|
DEFAULT_SCAN_INTERVAL = timedelta(seconds=30)
|
|
|
|
TOPIC_UPDATE = "update"
|