mirror of
https://github.com/home-assistant/core.git
synced 2025-05-15 03:19:15 +00:00
14 lines
226 B
Python
14 lines
226 B
Python
"""Component constants."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "ohme"
|
|
PLATFORMS = [
|
|
Platform.BUTTON,
|
|
Platform.NUMBER,
|
|
Platform.SELECT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
Platform.TIME,
|
|
]
|