mirror of
https://github.com/home-assistant/core.git
synced 2026-05-25 17:56:30 +01:00
4eb5734d73
* Remove CONF_NAME from config entry * Remove name from strings.json
11 lines
201 B
Python
11 lines
201 B
Python
"""Constants for the Solar-Log integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "solarlog"
|
|
|
|
# Default config for solarlog.
|
|
DEFAULT_HOST = "http://solar-log"
|
|
|
|
CONF_HAS_PWD = "has_password"
|