Files
home-assistant-arkteos/custom_components/arkteos/const.py
T

12 lines
248 B
Python

"""Constantes de l'intégration Arkteos."""
from homeassistant.const import Platform
DOMAIN = "arkteos"
DEFAULT_PORT = 9641
CONF_HOST = "host"
CONF_PORT = "port"
PLATFORMS: list[Platform] = [Platform.BINARY_SENSOR]
RUNTIME_DATA = "runtime_data"