8 lines
161 B
Python
8 lines
161 B
Python
"""Constants for the Stookwijzer integration."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "stookwijzer"
|
|
LOGGER = logging.getLogger(__package__)
|