mirror of
https://github.com/home-assistant/core.git
synced 2026-09-26 09:23:17 -04:00
14 lines
232 B
Python
14 lines
232 B
Python
"""Constants for the Kiosker integration."""
|
|
|
|
DOMAIN = "kiosker"
|
|
|
|
# Configuration keys
|
|
CONF_API_TOKEN = "api_token"
|
|
|
|
# Default values
|
|
PORT = 8081
|
|
POLL_INTERVAL = 15
|
|
DEFAULT_SSL = False
|
|
DEFAULT_SSL_VERIFY = False
|
|
REFRESH_DELAY = 0.5
|