core/homeassistant/components/uptime/const.py

10 lines
206 B
Python
Raw Normal View History

2022-03-12 11:36:08 +00:00
"""Constants for the Uptime integration."""
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "uptime"
PLATFORMS: Final = [Platform.SENSOR]
DEFAULT_NAME: Final = "Uptime"