mirror of
https://github.com/home-assistant/core.git
synced 2025-11-17 06:50:12 +00:00
11 lines
241 B
Python
11 lines
241 B
Python
"""Constants for the Stookwijzer integration."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "stookwijzer"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
ATTR_CONFIG_ENTRY_ID = "config_entry_id"
|
|
SERVICE_GET_FORECAST = "get_forecast"
|