mirror of
https://github.com/home-assistant/core.git
synced 2025-07-05 20:37:16 +00:00
12 lines
268 B
Python
12 lines
268 B
Python
"""Constants for the Pure Energie integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "pure_energie"
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|