mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 11:47:50 +00:00
8 lines
174 B
Python
8 lines
174 B
Python
"""Constants for the Uptime integration."""
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "uptime"
|
|
PLATFORMS: Final = [Platform.SENSOR]
|