mirror of
https://github.com/home-assistant/core.git
synced 2026-07-04 21:25:26 +01:00
70a54d333c
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
11 lines
189 B
Python
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__)
|