1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00
Files
core/homeassistant/components/geofency/config_flow.py
Paulus Schoutsen 4de97abc3a Black
2019-07-31 12:25:30 -07:00

11 lines
263 B
Python

"""Config flow for Geofency."""
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
config_entry_flow.register_webhook_flow(
DOMAIN,
"Geofency Webhook",
{"docs_url": "https://www.home-assistant.io/components/geofency/"},
)