mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
10 lines
281 B
Python
10 lines
281 B
Python
"""Config flow for iOS."""
|
|
from homeassistant import config_entries
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .const import DOMAIN
|
|
|
|
config_entry_flow.register_discovery_flow(
|
|
DOMAIN, "Home Assistant iOS", lambda *_: True, config_entries.CONN_CLASS_CLOUD_PUSH
|
|
)
|