mirror of https://github.com/home-assistant/core
17 lines
328 B
Python
17 lines
328 B
Python
"""Hassio Discovery data."""
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Any
|
|
|
|
from homeassistant.data_entry_flow import BaseServiceInfo
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class HassioServiceInfo(BaseServiceInfo):
|
|
"""Prepared info from hassio entries."""
|
|
|
|
config: dict[str, Any]
|
|
name: str
|
|
slug: str
|
|
uuid: str
|