core/homeassistant/components/moon/const.py

11 lines
201 B
Python
Raw Normal View History

2022-03-03 23:12:33 +00:00
"""Constants for the Moon integration."""
2022-03-03 23:12:33 +00:00
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "moon"
PLATFORMS: Final = [Platform.SENSOR]
DEFAULT_NAME: Final = "Moon"