11 lines
188 B
Python
11 lines
188 B
Python
|
"""Constants for the Peblar integration."""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import logging
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final = "peblar"
|
||
|
|
||
|
LOGGER = logging.getLogger(__package__)
|