mirror of https://github.com/home-assistant/core
22 lines
422 B
Python
22 lines
422 B
Python
"""Constants for the script integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "script"
|
|
|
|
ATTR_LAST_ACTION = "last_action"
|
|
ATTR_LAST_TRIGGERED = "last_triggered"
|
|
ATTR_VARIABLES = "variables"
|
|
|
|
CONF_ADVANCED = "advanced"
|
|
CONF_EXAMPLE = "example"
|
|
CONF_FIELDS = "fields"
|
|
CONF_REQUIRED = "required"
|
|
CONF_TRACE = "trace"
|
|
|
|
ENTITY_ID_FORMAT = DOMAIN + ".{}"
|
|
|
|
EVENT_SCRIPT_STARTED = "script_started"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|