hass-core/homeassistant/components/text/const.py
Raman Gupta 003e4224c8
Add text platform (#79454)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
Co-authored-by: Franck Nijhof <git@frenck.dev>
2022-11-24 20:01:01 +01:00

11 lines
205 B
Python

"""Provides the constants needed for the component."""
DOMAIN = "text"
ATTR_MAX = "max"
ATTR_MIN = "min"
ATTR_MODE = "mode"
ATTR_PATTERN = "pattern"
ATTR_VALUE = "value"
SERVICE_SET_VALUE = "set_value"