mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 02:18:47 +00:00
14 lines
284 B
Python
14 lines
284 B
Python
"""Constants for the Ghost integration."""
|
|
|
|
DOMAIN: str = "ghost"
|
|
|
|
CONF_ADMIN_API_KEY: str = "admin_api_key"
|
|
CONF_API_URL: str = "api_url"
|
|
|
|
DEFAULT_SCAN_INTERVAL: int = 300 # 5 minutes
|
|
|
|
# Device info.
|
|
CURRENCY: str = "USD"
|
|
MANUFACTURER: str = "Ghost Foundation"
|
|
MODEL: str = "Ghost"
|