1 """The blueprint integration."""
7 from .
import websocket_api
8 from .const
import CONF_USE_BLUEPRINT, DOMAIN
12 BlueprintWithNameException,
15 InvalidBlueprintInputs,
18 from .models
import Blueprint, BlueprintInputs, DomainBlueprints
19 from .schemas
import (
20 BLUEPRINT_INSTANCE_FIELDS,
22 is_blueprint_instance_config,
25 CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
28 async
def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
29 """Set up the blueprint integration."""
30 websocket_api.async_setup(hass)
bool async_setup(HomeAssistant hass, ConfigType config)