in plugins/plugins.go [225:232]
func contains(s []string, e string) bool { for _, a := range s { if a == e { return true } } return false }