mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-11-14 05:20:21 +00:00
12 lines
254 B
Python
12 lines
254 B
Python
"""Discovery service for MQTT."""
|
|
import voluptuous as vol
|
|
|
|
from hassio.validate import NETWORK_PORT
|
|
|
|
from ..const import ATTR_HOST, ATTR_PORT
|
|
|
|
|
|
SCHEMA = vol.Schema(
|
|
{vol.Required(ATTR_HOST): vol.Coerce(str), vol.Required(ATTR_PORT): NETWORK_PORT}
|
|
)
|