hass-core/homeassistant/components/moon/const.py
2022-03-03 15:12:33 -08:00

9 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"