Initial commit

This commit is contained in:
nemunaire 2026-04-26 11:06:47 +07:00
commit 7ca2fb60c6
24 changed files with 3098 additions and 0 deletions

16
checker/provider.go Normal file
View file

@ -0,0 +1,16 @@
package checker
import (
sdk "git.happydns.org/checker-sdk-go/checker"
)
// Provider returns a new authoritative-consistency observation provider.
func Provider() sdk.ObservationProvider {
return &authoritativeConsistencyProvider{}
}
type authoritativeConsistencyProvider struct{}
func (p *authoritativeConsistencyProvider) Key() sdk.ObservationKey {
return ObservationKey
}