1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-05 13:45:32 +01:00
Files
core/homeassistant/components/hypontech/const.py
T
Hai-Nam Nguyen 70a54d333c Add OEM support to Hypontech (#173472)
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2026-06-12 11:59:07 +02:00

11 lines
189 B
Python

"""Constants for the Hypontech Cloud integration."""
from logging import Logger, getLogger
DOMAIN = "hypontech"
CONF_OEM = "oem"
DEFAULT_OEM = 0
LOGGER: Logger = getLogger(__package__)