6 lines
118 B
Python
6 lines
118 B
Python
"""Constants for the Sun integration."""
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "sun"
|
|
|
|
DEFAULT_NAME: Final = "Sun"
|