mirror of
https://github.com/home-assistant/core.git
synced 2026-05-26 18:26:25 +01:00
41ffa8d6db
* Initial commit * Add/update tests * Minor adjustment * Update data_schema * Adjust get password * Set const for has_password, remove deletion of extended_data * Update diagnostics snapshot * Correct typo * Add test for migration from mv 2 to 3 * Adjust migration test
12 lines
227 B
Python
12 lines
227 B
Python
"""Constants for the Solar-Log integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "solarlog"
|
|
|
|
# Default config for solarlog.
|
|
DEFAULT_HOST = "http://solar-log"
|
|
DEFAULT_NAME = "solarlog"
|
|
|
|
CONF_HAS_PWD = "has_password"
|