mirror of
https://github.com/home-assistant/core.git
synced 2026-07-10 08:15:14 +01:00
c68b259bd3
Co-authored-by: Joakim Sørensen <joasoe@gmail.com>
7 lines
196 B
Python
7 lines
196 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 *_: True)
|