feat(checker): port other checkers over

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-07-25 18:45:54 +00:00
parent 178c60cf72
commit 1c43349c4a
21 changed files with 556 additions and 0 deletions

8
lib/checker/all/all.go Normal file
View File

@@ -0,0 +1,8 @@
// Package all imports all of the standard checker types.
package all
import (
_ "github.com/TecharoHQ/anubis/lib/checker/headerexists"
_ "github.com/TecharoHQ/anubis/lib/checker/headermatches"
_ "github.com/TecharoHQ/anubis/lib/checker/remoteaddress"
)