mirror of
https://github.com/elisspace/core.git
synced 2026-08-29 23:52:02 +00:00
14 lines
259 B
Python
14 lines
259 B
Python
"""Constants for the Oncue integration."""
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
DOMAIN = "oncue"
|
|
|
|
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|
|
|
|
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
|
|
|
|
VALUE_UNAVAILABLE: str = "--"
|