1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-14 20:41:24 +01:00
Files
core/homeassistant/components/sun/const.py
2024-03-08 14:33:51 +01:00

11 lines
226 B
Python

"""Constants for the Sun integration."""
from typing import Final
DOMAIN: Final = "sun"
DEFAULT_NAME: Final = "Sun"
SIGNAL_POSITION_CHANGED = f"{DOMAIN}_position_changed"
SIGNAL_EVENTS_CHANGED = f"{DOMAIN}_events_changed"