mirror of
https://github.com/home-assistant/core.git
synced 2025-06-26 16:07:08 +00:00
11 lines
279 B
Python
11 lines
279 B
Python
"""Config flow for Switcher integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .const import DOMAIN
|
|
from .utils import async_has_devices
|
|
|
|
config_entry_flow.register_discovery_flow(DOMAIN, "Switcher", async_has_devices)
|