Label is a key/value pair of strings.
type Label struct {
Key string
Value string
}
Set is a set of labels.
type Set struct {
List []Label
}
func NewSet(list []Label) Set
NewSet constructs a LabelSet that wraps the provided labels.