mirror of
https://github.com/home-assistant/core.git
synced 2025-05-17 12:29:16 +00:00

Co-authored-by: Franck Nijhof <frenck@frenck.nl> Co-authored-by: Mick Vleeshouwer <mick@imick.nl>
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__)
|