* 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
11 lines
227 B
Python
11 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"
|