mirror of
https://github.com/home-assistant/core.git
synced 2025-06-08 07:07:08 +00:00
12 lines
215 B
Python
12 lines
215 B
Python
"""The Oncue integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class OncueConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Oncue."""
|
|
|
|
VERSION = 1
|