ha-registry/custom_components/ha_registry/config_flow.py

13 lines
355 B
Python
Executable File

"""Config flow."""
from homeassistant import config_entries
from .const import DOMAIN
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
VERSION = 1
async def async_step_user(self, user_input=None):
await self.async_set_unique_id("ha_registry")
return self.async_create_entry(title="Home Assistant Registry", data={})