mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 02:48:57 +00:00
10 lines
200 B
Python
10 lines
200 B
Python
"""Constants for the Stookwijzer integration."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "stookwijzer"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
SERVICE_GET_FORECAST = "get_forecast"
|