remove two letter keyword (#3210)

This commit is contained in:
0x1 2024-08-13 10:09:36 -04:00 committed by GitHub
parent e9f8123776
commit 8cf1ec2824
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,7 +39,7 @@ var (
// Keywords are used for efficiently pre-filtering chunks.
// Use identifiers in the secret preferably, or the provider name.
func (s Scanner) Keywords() []string {
return []string{"elevenlabs", "xi-api-key", "el", "xi_api_key"}
return []string{"elevenlabs", "xi-api-key", "xi_api_key"}
}
// FromData will find and optionally verify Elevenlabs secrets in a given set of bytes.