2022-01-06 01:55:57 +00:00
|
|
|
"""Constants for the Steamist integration."""
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
import aiohttp
|
|
|
|
|
|
|
|
DOMAIN = "steamist"
|
|
|
|
|
|
|
|
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|
2022-01-09 20:34:50 +00:00
|
|
|
|
|
|
|
STARTUP_SCAN_TIMEOUT = 5
|
|
|
|
DISCOVER_SCAN_TIMEOUT = 10
|
|
|
|
|
|
|
|
DISCOVERY = "discovery"
|