mirror of
https://github.com/home-assistant/core.git
synced 2025-11-16 14:30:22 +00:00
10 lines
241 B
Python
10 lines
241 B
Python
"""Constants for the Fluss+ integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "fluss"
|
|
LOGGER = logging.getLogger(__name__)
|
|
UPDATE_INTERVAL = 60 # seconds
|
|
UPDATE_INTERVAL_TIMEDELTA = timedelta(seconds=UPDATE_INTERVAL)
|