mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 20:27:57 +00:00
12 lines
253 B
Python
12 lines
253 B
Python
"""The Mazda Connected Services integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class MazdaConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Mazda Connected Services."""
|
|
|
|
VERSION = 1
|