(blob map[string]string, keywords []string)
| 152 | } |
| 153 | |
| 154 | func matchKeywords(blob map[string]string, keywords []string) bool { |
| 155 | for _, keyword := range keywords { |
| 156 | if _, ok := blob[keyword]; !ok { |
| 157 | return false |
| 158 | } |
| 159 | } |
| 160 | return true |
| 161 | } |
| 162 | |
| 163 | // ResponseMessage implements the standard for response errors and |
| 164 | // messages. A message has a code and a string message. |
no outgoing calls
no test coverage detected
searching dependent graphs…