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:
Robert Svensson 2019-05-22 00:36:26 +02:00 committed by Paulus Schoutsen
parent e047e4dcff
commit 636077c74d
13 changed files with 199 additions and 22 deletions

View file

@ -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
]