summaryrefslogtreecommitdiff
path: root/netdisco/discoverables/home_assistant.py
blob: 2b7828efa49d15ec07ea5916e058098b954d3fd1 (plain)
1
2
3
4
5
6
7
8
9
"""Discover Home Assistant servers."""
from . import MDNSDiscoverable


class Discoverable(MDNSDiscoverable):
    """Add support for discovering Home Assistant instances."""

    def __init__(self, nd):
        super(Discoverable, self).__init__(nd, '_home-assistant._tcp.local.')