mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 19:27:51 +00:00
11 lines
188 B
Python
11 lines
188 B
Python
"""Provides the constants needed for the component."""
|
|
|
|
DOMAIN = "select"
|
|
|
|
ATTR_OPTIONS = "options"
|
|
ATTR_OPTION = "option"
|
|
|
|
CONF_OPTION = "option"
|
|
|
|
SERVICE_SELECT_OPTION = "select_option"
|