mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 13:17:53 +00:00
10 lines
206 B
Python
10 lines
206 B
Python
"""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"
|