23 lines
712 B
Python
23 lines
712 B
Python
"""The blueprint integration."""
|
|
from homeassistant.core import HomeAssistant
|
|
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,
|
|
BlueprintWithNameException,
|
|
FailedToLoad,
|
|
InvalidBlueprint,
|
|
InvalidBlueprintInputs,
|
|
MissingInput,
|
|
)
|
|
from .models import Blueprint, BlueprintInputs, DomainBlueprints # noqa: F401
|
|
from .schemas import is_blueprint_instance_config # noqa: F401
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|
"""Set up the blueprint integration."""
|
|
websocket_api.async_setup(hass)
|
|
return True
|