1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/ios/config_flow.py

9 lines
204 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
)