mirror of
https://github.com/home-assistant/core.git
synced 2025-07-01 18:37:13 +00:00
12 lines
259 B
Python
12 lines
259 B
Python
"""Constants for the Home Assistant alerts integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
import aiohttp
|
|
|
|
COMPONENT_LOADED_COOLDOWN = 30
|
|
DOMAIN = "homeassistant_alerts"
|
|
UPDATE_INTERVAL = timedelta(hours=3)
|
|
|
|
REQUEST_TIMEOUT = aiohttp.ClientTimeout(total=30)
|