mirror of https://github.com/home-assistant/core
17 lines
318 B
Python
17 lines
318 B
Python
"""Constants for the Oncue integration."""
|
|
|
|
import aiohttp
|
|
from aiooncue import ServiceFailedException
|
|
|
|
DOMAIN = "oncue"
|
|
|
|
CONNECTION_EXCEPTIONS = (
|
|
TimeoutError,
|
|
aiohttp.ClientError,
|
|
ServiceFailedException,
|
|
)
|
|
|
|
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
|
|
|
|
VALUE_UNAVAILABLE: str = "--"
|