mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
9 lines
175 B
Python
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]
|