1
mirror of https://github.com/home-assistant/core synced 2024-09-25 00:41:32 +02:00
ha-core/homeassistant/components/dialogflow/config_flow.py

15 lines
380 B
Python

"""Config flow for DialogFlow."""
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
config_entry_flow.register_webhook_flow(
DOMAIN,
"Dialogflow Webhook",
{
"dialogflow_url": "https://cloud.google.com/dialogflow/es/docs/fulfillment-webhook",
"docs_url": "https://www.home-assistant.io/integrations/dialogflow/",
},
)