mirror of
https://github.com/home-assistant/core.git
synced 2025-07-03 19:37:10 +00:00

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> Co-authored-by: J. Nick Koston <nick@koston.org>
11 lines
189 B
Python
11 lines
189 B
Python
"""Constants for the IntelliFire integration."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
DOMAIN = "intellifire"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_SERIAL = "serial"
|