Initial commit

This commit is contained in:
nemunaire 2026-04-27 01:07:57 +07:00
commit 3264e54723
20 changed files with 2269 additions and 0 deletions

13
plugin/plugin.go Normal file
View file

@ -0,0 +1,13 @@
package main
import (
hd "git.happydns.org/checker-happydeliver/checker"
sdk "git.happydns.org/checker-sdk-go/checker"
)
var Version = "custom-build"
func NewCheckerPlugin() (*sdk.CheckerDefinition, sdk.ObservationProvider, error) {
hd.Version = Version
return hd.Definition(), hd.Provider(), nil
}