Initial commit

This commit is contained in:
nemunaire 2026-04-23 01:52:25 +07:00
commit a2a7921cb8
20 changed files with 1868 additions and 0 deletions

20
plugin/plugin.go Normal file
View file

@ -0,0 +1,20 @@
// Command plugin is the happyDomain plugin entrypoint for the CAA checker.
//
// It is built as a Go plugin (`go build -buildmode=plugin`) and loaded at
// runtime by happyDomain.
package main
import (
caa "git.happydns.org/checker-caa/checker"
sdk "git.happydns.org/checker-sdk-go/checker"
)
var Version = "custom-build"
// NewCheckerPlugin is the symbol resolved by happyDomain when loading the
// .so file.
func NewCheckerPlugin() (*sdk.CheckerDefinition, sdk.ObservationProvider, error) {
caa.Version = Version
prvd := caa.Provider()
return prvd.(sdk.CheckerDefinitionProvider).Definition(), prvd, nil
}