core/homeassistant/components/moon/const.py

11 lines
201 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"