mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-05 05:17:00 +03:00
13 lines
240 B
Go
13 lines
240 B
Go
package checks
|
|
|
|
import "github.com/dlorenc/scorecard/checker"
|
|
|
|
var AllChecks = []checker.NamedCheck{}
|
|
|
|
func registerCheck(name string, fn checker.CheckFn) {
|
|
AllChecks = append(AllChecks, checker.NamedCheck{
|
|
Name: name,
|
|
Fn: fn,
|
|
})
|
|
}
|