Co-authored-by: Joost Lekkerkerker <[email protected]> Co-authored-by: Copilot <[email protected]>
8 lines
155 B
Python
8 lines
155 B
Python
"""Constants for the Hypontech Cloud integration."""
|
|
|
|
from logging import Logger, getLogger
|
|
|
|
DOMAIN = "hypontech"
|
|
|
|
LOGGER: Logger = getLogger(__package__)
|