mirror of
https://github.com/home-assistant/core.git
synced 2026-09-05 21:12:24 +01:00
10 lines
196 B
Python
10 lines
196 B
Python
"""Constants for the Hot Spring integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "hotspring"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|