mirror of
https://github.com/home-assistant/core.git
synced 2026-02-28 22:06:25 +00:00
12 lines
196 B
Python
12 lines
196 B
Python
"""Constants for the Trane Local integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "trane"
|
|
|
|
PLATFORMS = [Platform.SWITCH]
|
|
|
|
CONF_SECRET_KEY = "secret_key"
|
|
|
|
MANUFACTURER = "Trane"
|