blob: 5ab00945f4880a744ff48ffaea0151a22487fe12 [file]
from dataclasses import dataclass
from solrorbit.builder.models.node import Node
@dataclass
class Host:
"""A representation of a host within a cluster"""
name: str
address: str
metadata: dict
node: Node