1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/twilio/config_flow.py

14 lines
354 B
Python

"""Config flow for Twilio."""
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
config_entry_flow.register_webhook_flow(
DOMAIN,
"Twilio Webhook",
{
"twilio_url": "https://www.twilio.com/docs/glossary/what-is-a-webhook",
"docs_url": "https://www.home-assistant.io/integrations/twilio/",
},
)