mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-11-08 10:29:30 +00:00
14 lines
304 B
Python
14 lines
304 B
Python
"""Discovery service for Zwave JS."""
|
|
import voluptuous as vol
|
|
|
|
from ...validate import network_port
|
|
from ..const import ATTR_HOST, ATTR_PORT
|
|
|
|
# pylint: disable=no-value-for-parameter
|
|
SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(ATTR_HOST): str,
|
|
vol.Required(ATTR_PORT): network_port,
|
|
}
|
|
)
|