blob: 2dfbd7f2e9175907b34a9ce283372ec8ea575e9d [file]
from dataclasses import dataclass
from typing import List
from solrorbit.builder.models.host import Host
@dataclass
class Cluster:
"""A representation of the cluster used in the benchmark"""
name: str
hosts: List[Host]