mirror of
https://github.com/home-assistant/core.git
synced 2025-05-14 10:59:15 +00:00
10 lines
225 B
Python
10 lines
225 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"
|