mirror of
https://github.com/home-assistant/core.git
synced 2026-09-08 06:31:35 +01:00
10 lines
239 B
Python
10 lines
239 B
Python
"""Constants for the Autoskope integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "autoskope"
|
|
|
|
DEFAULT_HOST = "https://portal.autoskope.de"
|
|
SECTION_ADDITIONAL_SETTINGS = "additional_settings"
|
|
UPDATE_INTERVAL = timedelta(seconds=60)
|