mirror of
https://github.com/home-assistant/core.git
synced 2025-05-21 14:27:07 +00:00
7 lines
154 B
Python
7 lines
154 B
Python
"""A sensor that monitors trends in other components."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "trend"
|
|
PLATFORMS = [Platform.BINARY_SENSOR]
|