9 lines
165 B
Python
9 lines
165 B
Python
|
"""Constants for the IntelliFire integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import logging
|
||
|
|
||
|
DOMAIN = "intellifire"
|
||
|
|
||
|
LOGGER = logging.getLogger(__package__)
|