1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-01 05:04:21 +01:00
Files
core/homeassistant/components/text/const.py
T

11 lines
186 B
Python

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