mirror of
https://github.com/home-assistant/core.git
synced 2025-06-18 20:17:07 +00:00
14 lines
302 B
Python
14 lines
302 B
Python
"""The enphase_envoy component."""
|
|
from pyenphase import (
|
|
EnvoyAuthenticationError,
|
|
EnvoyAuthenticationRequired,
|
|
)
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "enphase_envoy"
|
|
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
INVALID_AUTH_ERRORS = (EnvoyAuthenticationError, EnvoyAuthenticationRequired)
|