5 // KeywordsCheck - check if one of the keyword from the <keywords> group is included in the
6 // <line> string. Returns false if no word was found, or true otherwise and also this word
8 func KeywordsCheck(line
string, keywords
...string) (bool, string) {
9 for _
, key
:= range keywords
{
10 if strings
.Contains(line
, key
) {