mirror of
https://github.com/home-assistant/core.git
synced 2026-07-04 13:15:29 +01:00
b6c7b2952e
Co-authored-by: Franck Nijhof <git@frenck.dev> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
235 B
Python
10 lines
235 B
Python
"""Constants for the Autoskope integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "autoskope"
|
|
|
|
DEFAULT_HOST = "https://portal.autoskope.de"
|
|
SECTION_ADVANCED_SETTINGS = "advanced_settings"
|
|
UPDATE_INTERVAL = timedelta(seconds=60)
|