in helpers.go [11:18]
func contains(list []string, str string) bool { for _, e := range list { if e == str { return true } } return false }