mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
10 lines
205 B
Python
10 lines
205 B
Python
"""Config flow for iOS."""
|
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .const import DOMAIN
|
|
|
|
config_entry_flow.register_discovery_flow(
|
|
DOMAIN, "Home Assistant iOS", lambda hass: True
|
|
)
|