mirror of
https://github.com/home-assistant/core.git
synced 2026-06-03 06:04:06 +01:00
fa7ecddb66
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
9 lines
186 B
Python
9 lines
186 B
Python
"""Constants for the Fluss+ integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "fluss"
|
|
LOGGER = logging.getLogger(__name__)
|
|
UPDATE_INTERVAL = timedelta(minutes=30)
|