package strategy type Strategy interface { Schedule() ([]*AssignedCluster, error) } type AssignedCluster struct { ParticipantId int64 Name string Replicas int32 }