mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 18:14:35 +01:00
13 lines
240 B
Python
13 lines
240 B
Python
"""Constants for the Karakeep integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "karakeep"
|
|
|
|
DEFAULT_VERIFY_SSL = True
|
|
UPDATE_INTERVAL = timedelta(seconds=300)
|
|
|
|
PLATFORMS = [Platform.SENSOR]
|