mirror of
https://github.com/home-assistant/core.git
synced 2026-05-14 20:41:24 +01:00
11 lines
226 B
Python
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"
|