10 lines
188 B
Python
10 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"
|