| 129 | q := strings.ToLower(query) |
| 130 | |
| 131 | type scored struct { |
| 132 | item SuggestionItem |
| 133 | score int64 |
| 134 | } |
| 135 | var result []scored |
| 136 | |
| 137 | fuzzyMatches := fuzzy.Find(q, filtered) |
nothing calls this directly
no outgoing calls
no test coverage detected