hass-core/homeassistant/components/map/__init__.py
Fabian Affolter 161c368c9d Update file header (#21054)
* Update file header

* Update __init__.py
2019-02-13 20:35:12 -08:00

9 lines
269 B
Python

"""Support for showing device locations."""
DOMAIN = 'map'
async def async_setup(hass, config):
"""Register the built-in map panel."""
await hass.components.frontend.async_register_built_in_panel(
'map', 'map', 'hass:tooltip-account')
return True