Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Franck Nijhof <frenck@frenck.nl>
11 lines
222 B
Python
11 lines
222 B
Python
"""Config flow for MyQ integration."""
|
|
|
|
from homeassistant import config_entries
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for MyQ."""
|
|
|
|
VERSION = 1
|