package interfaces import ( "context" "edge-infra.dev/pkg/edge/constants/api/fleet" ) type ClusterLabelService interface { // FetchFleetType returns the fleet of the cluster // Using the label_key column of the edge-fleet label FetchFleetType(ctx context.Context, clusterEdgeID string) (*fleet.Type, error) }