bomber icon indicating copy to clipboard operation
bomber copied to clipboard

Sort vulnerabilities by severity in HTML and JSON output

Open djschleen opened this issue 3 years ago • 0 comments

Example sorting. Can we make this generic?

func SortASC(products []entities.Product) { sort.Slice(products, func(i, j int) bool { return products[i].Price < products[j].Price }) }

djschleen avatar Oct 18 '22 16:10 djschleen