mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 03:37:51 +00:00
10 lines
162 B
Python
10 lines
162 B
Python
"""Constants for the Oncue integration."""
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
DOMAIN = "oncue"
|
|
|
|
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|