mirror of
https://github.com/home-assistant/core.git
synced 2025-05-06 06:59:15 +00:00
22 lines
337 B
Python
22 lines
337 B
Python
"""Const for conversation integration."""
|
|
|
|
DOMAIN = "conversation"
|
|
|
|
DEFAULT_EXPOSED_DOMAINS = {
|
|
"binary_sensor",
|
|
"climate",
|
|
"cover",
|
|
"fan",
|
|
"humidifier",
|
|
"light",
|
|
"lock",
|
|
"scene",
|
|
"script",
|
|
"sensor",
|
|
"switch",
|
|
"vacuum",
|
|
"water_heater",
|
|
}
|
|
|
|
DEFAULT_EXPOSED_ATTRIBUTES = {"device_class"}
|