mirror of https://github.com/home-assistant/core
15 lines
343 B
Python
15 lines
343 B
Python
"""Constants for the blueprint integration."""
|
|
|
|
BLUEPRINT_FOLDER = "blueprints"
|
|
|
|
CONF_BLUEPRINT = "blueprint"
|
|
CONF_USE_BLUEPRINT = "use_blueprint"
|
|
CONF_INPUT = "input"
|
|
CONF_SOURCE_URL = "source_url"
|
|
CONF_HOMEASSISTANT = "homeassistant"
|
|
CONF_MIN_VERSION = "min_version"
|
|
CONF_AUTHOR = "author"
|
|
CONF_COLLAPSED = "collapsed"
|
|
|
|
DOMAIN = "blueprint"
|