core/homeassistant/components/uptime/const.py

9 lines
175 B
Python

"""Constants for the Uptime integration."""
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "uptime"
PLATFORMS: Final = [Platform.SENSOR]