mirror of
https://github.com/home-assistant/core.git
synced 2026-05-29 11:45:35 +01:00
12 lines
251 B
Python
12 lines
251 B
Python
"""Config flow for Konnected.io integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class KonnectedFlowHandler(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Konnected.io."""
|
|
|
|
VERSION = 1
|