mirror of
https://github.com/home-assistant/core.git
synced 2026-04-29 05:03:59 +01:00
12 lines
241 B
Python
12 lines
241 B
Python
"""Config flow for JuiceNet integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class JuiceNetConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for JuiceNet."""
|
|
|
|
VERSION = 1
|