mirror of
https://github.com/home-assistant/core.git
synced 2026-08-09 06:42:33 +01:00
14 lines
276 B
Python
14 lines
276 B
Python
"""Constants for the Harbor integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "harbor"
|
|
MANUFACTURER = "Harbor"
|
|
MODEL = "Harbor Camera"
|
|
|
|
PLATFORMS: list[Platform] = [Platform.SENSOR]
|
|
|
|
CONF_CERT_PEM = "cert_pem"
|
|
CONF_KEY_PEM = "key_pem"
|
|
CONF_SERIAL = "serial"
|