Empty slice literal used to declare a variable GO-W1027
Anti-pattern
Minor
1 occurrence in this check
Empty slice literal of type "[]string" used to define "result"
46	var words []WordInfo
47	consultService(context, 20, &words)
48
49	result := []string{}50	for _, word := range words {
51		result = append(result, word.Word)
52	}