Co-authored-by: Franck Nijhof <frenck@frenck.nl> Co-authored-by: Mick Vleeshouwer <mick@imick.nl>
8 lines
165 B
Python
8 lines
165 B
Python
"""Constants for the IntelliFire integration."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
DOMAIN = "intellifire"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|