mirror of
https://github.com/home-assistant/core.git
synced 2025-07-30 02:38:10 +02:00
Zeroconf discovery for config entries (#23919)
* Proof of concept * Follow comments * Fix line length and bad imports * Move imports to top * Exception handling for unicode decoding Create debug print for new service types Add empty test files * First try at a test * Add type and name to service info Fix static check * Add aiozeroconf to test dependencies
This commit is contained in:
committed by
Paulus Schoutsen
parent
e047e4dcff
commit
636077c74d
@ -3,7 +3,8 @@ import pathlib
|
||||
import sys
|
||||
|
||||
from .model import Integration, Config
|
||||
from . import dependencies, manifest, codeowners, services, config_flow
|
||||
from . import (
|
||||
dependencies, manifest, codeowners, services, config_flow, zeroconf)
|
||||
|
||||
PLUGINS = [
|
||||
manifest,
|
||||
@ -11,6 +12,7 @@ PLUGINS = [
|
||||
codeowners,
|
||||
services,
|
||||
config_flow,
|
||||
zeroconf
|
||||
]
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user