mirror of
https://github.com/home-assistant/core.git
synced 2026-07-16 02:53:27 +01:00
7e805f2f2a
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
10 lines
195 B
Python
10 lines
195 B
Python
"""Constants for the SAJ Solar Inverter integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "saj"
|
|
|
|
INTEGRATION_TITLE: Final = "SAJ Solar Inverter"
|
|
|
|
CONNECTION_TYPES = ["ethernet", "wifi"]
|