2019-05-13 08:16:55 +00:00
|
|
|
"""Config flow for iOS."""
|
2024-03-08 13:52:48 +00:00
|
|
|
|
2019-12-09 13:21:24 +00:00
|
|
|
from homeassistant.helpers import config_entry_flow
|
2019-05-13 08:16:55 +00:00
|
|
|
|
2019-12-09 13:21:24 +00:00
|
|
|
from .const import DOMAIN
|
2019-05-13 08:16:55 +00:00
|
|
|
|
2022-02-14 17:10:50 +00:00
|
|
|
config_entry_flow.register_discovery_flow(
|
|
|
|
DOMAIN, "Home Assistant iOS", lambda hass: True
|
|
|
|
)
|