mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 21:19:16 +00:00
14 lines
354 B
Python
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/",
|
|
},
|
|
)
|