mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 19:26:31 +01:00
7fb475aad1
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joostlek <joostlek@outlook.com>
10 lines
216 B
Python
10 lines
216 B
Python
"""Constants for the Fluss+ integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "fluss"
|
|
LOGGER = logging.getLogger(__name__)
|
|
UPDATE_INTERVAL = timedelta(minutes=30)
|
|
COMMAND_REFRESH_COOLDOWN = 10
|