mirror of
https://github.com/home-assistant/core.git
synced 2025-05-07 23:49:17 +00:00
12 lines
281 B
Python
12 lines
281 B
Python
"""Config flow for TP-Link."""
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .common import async_get_discoverable_devices
|
|
from .const import DOMAIN
|
|
|
|
config_entry_flow.register_discovery_flow(
|
|
DOMAIN,
|
|
"TP-Link Smart Home",
|
|
async_get_discoverable_devices,
|
|
)
|