mirror of
https://github.com/home-assistant/core.git
synced 2025-05-14 10:59:15 +00:00
10 lines
200 B
Python
10 lines
200 B
Python
"""Constants for the Moon integration."""
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "moon"
|
|
PLATFORMS: Final = [Platform.SENSOR]
|
|
|
|
DEFAULT_NAME: Final = "Moon"
|