Initial commit
This commit is contained in:
commit
5a632a3b30
24 changed files with 2901 additions and 0 deletions
14
plugin/plugin.go
Normal file
14
plugin/plugin.go
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// Command plugin is the happyDomain plugin entrypoint for the dnssec checker.
|
||||
package main
|
||||
|
||||
import (
|
||||
dnssec "git.happydns.org/checker-dnssec/checker"
|
||||
sdk "git.happydns.org/checker-sdk-go/checker"
|
||||
)
|
||||
|
||||
var Version = "custom-build"
|
||||
|
||||
func NewCheckerPlugin() (*sdk.CheckerDefinition, sdk.ObservationProvider, error) {
|
||||
dnssec.Version = Version
|
||||
return dnssec.Definition(), dnssec.Provider(), nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue