MCPcopy Create free account
hub / github.com/archlinux-de/pkgstats-cli / PrintShowURL

Function PrintShowURL

internal/api/request/printer.go:35–44  ·  view source on GitHub ↗
(writer io.Writer, baseURL string, packages []string)

Source from the content-addressed store, hash-verified

33}
34
35func PrintShowURL(writer io.Writer, baseURL string, packages []string) {
36 if len(packages) > 0 {
37 for i, p := range packages {
38 packages[i] = url.PathEscape(p)
39 }
40
41 sort.StringSlice.Sort(packages)
42 fmt.Fprintf(writer, "See more results at %s/compare/packages/%s\n", baseURL, strings.Join(packages, ","))
43 }
44}

Callers 2

TestPrintShowURLFunction · 0.92
newShowCmdFunction · 0.92

Calls

no outgoing calls

Tested by 1

TestPrintShowURLFunction · 0.74