mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
10 lines
177 B
Cheetah
10 lines
177 B
Cheetah
package data
|
|
|
|
import "github.com/go-enry/go-enry/v2/regex"
|
|
|
|
var VendorMatchers = []regex.EnryRegexp{
|
|
{{range $regexp := . -}}
|
|
regex.MustCompile(`{{ $regexp }}`),
|
|
{{end -}}
|
|
}
|