mirror of
https://github.com/home-assistant/core.git
synced 2025-05-23 23:37:07 +00:00
13 lines
315 B
Python
13 lines
315 B
Python
"""Support for automation and script tracing and debugging."""
|
|
from . import websocket_api
|
|
from .const import DATA_TRACE
|
|
|
|
DOMAIN = "trace"
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Initialize the trace integration."""
|
|
hass.data.setdefault(DATA_TRACE, {})
|
|
websocket_api.async_setup(hass)
|
|
return True
|