mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00: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
|