mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05: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)
|