bomber
bomber copied to clipboard
Sort vulnerabilities by severity in HTML and JSON output
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 }) }