Create config_flow.py

This commit is contained in:
junkfix 2025-03-17 17:28:14 +00:00 committed by GitHub
parent 843e0346ec
commit 99d0cc8da1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

5
config_flow.py Normal file
View file

@ -0,0 +1,5 @@
from homeassistant.helpers import config_entry_flow
config_entry_flow.register_discovery_flow(
"config_editor", "Config Editor", lambda hass: True
)