core/homeassistant/components/ios/config_flow.py

10 lines
281 B
Python
Raw Normal View History

"""Config flow for iOS."""
from homeassistant.helpers import config_entry_flow
from homeassistant import config_entries
from .const import DOMAIN
config_entry_flow.register_discovery_flow(
2019-07-31 19:25:30 +00:00
DOMAIN, "Home Assistant iOS", lambda *_: True, config_entries.CONN_CLASS_CLOUD_PUSH
)