Basic service call framework set up

This commit is contained in:
2022-07-17 23:07:58 +00:00
parent 26b4abaf3f
commit 3bf2481e5b
7 changed files with 279 additions and 256 deletions

View File

@@ -4,6 +4,7 @@ from .store import BrowserModStore
from .mod_view import async_setup_view
from .connection import async_setup_connection
from .const import DOMAIN, DATA_DEVICES, DATA_ADDERS, DATA_STORE
from .service import async_setup_services
_LOGGER = logging.getLogger(__name__)
@@ -32,5 +33,6 @@ async def async_setup_entry(hass, config_entry):
await async_setup_connection(hass)
await async_setup_view(hass)
await async_setup_services(hass)
return True