mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 19:09:32 +00:00
12 lines
230 B
Python
12 lines
230 B
Python
"""Config flow for Spider integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class SpiderConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Spider."""
|
|
|
|
VERSION = 1
|