Initial commit

This commit is contained in:
nemunaire 2026-04-26 18:56:19 +07:00
commit 5a632a3b30
24 changed files with 2901 additions and 0 deletions

14
plugin/plugin.go Normal file
View 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
}