1 package reference 2 3 import "github.com/distribution/reference" 4 5 // Sort sorts string references preferring higher information references. 6 // 7 // Deprecated: use [reference.Sort]. 8 func Sort(references []string) []string { 9 return reference.Sort(references) 10 } 11