2022-03-03 23:12:33 +00:00
|
|
|
"""Constants for the Moon integration."""
|
2024-03-08 14:01:29 +00:00
|
|
|
|
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"
|