mirror of https://github.com/home-assistant/core
32 lines
901 B
Python
32 lines
901 B
Python
"""The blueprint integration."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
from . import websocket_api
|
|
from .const import CONF_USE_BLUEPRINT, DOMAIN # noqa: F401
|
|
from .errors import ( # noqa: F401
|
|
BlueprintException,
|
|
BlueprintInUse,
|
|
BlueprintWithNameException,
|
|
FailedToLoad,
|
|
InvalidBlueprint,
|
|
InvalidBlueprintInputs,
|
|
MissingInput,
|
|
)
|
|
from .models import Blueprint, BlueprintInputs, DomainBlueprints # noqa: F401
|
|
from .schemas import ( # noqa: F401
|
|
BLUEPRINT_INSTANCE_FIELDS,
|
|
BLUEPRINT_SCHEMA,
|
|
is_blueprint_instance_config,
|
|
)
|
|
|
|
CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|
"""Set up the blueprint integration."""
|
|
websocket_api.async_setup(hass)
|
|
return True
|