9 lines
162 B
Python
9 lines
162 B
Python
"""Constants for the Oncue integration."""
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
DOMAIN = "oncue"
|
|
|
|
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|