mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
12 lines
221 B
Python
12 lines
221 B
Python
"""Config flow for MyQ integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class MyQConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for MyQ."""
|
|
|
|
VERSION = 1
|