mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 05:07:52 +00:00
11 lines
268 B
Python
11 lines
268 B
Python
"""Support for showing device locations."""
|
|
DOMAIN = "map"
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Register the built-in map panel."""
|
|
hass.components.frontend.async_register_built_in_panel(
|
|
"map", "map", "hass:tooltip-account"
|
|
)
|
|
return True
|