mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-22 16:16:41 +00:00
e98d749bf2
Signed-off-by: Xe Iaso <me@xeiaso.net>
11 lines
364 B
Go
11 lines
364 B
Go
// Package all imports all of the standard checker types.
|
|
package all
|
|
|
|
import (
|
|
_ "github.com/TecharoHQ/anubis/lib/checker/expression"
|
|
_ "github.com/TecharoHQ/anubis/lib/checker/headerexists"
|
|
_ "github.com/TecharoHQ/anubis/lib/checker/headermatches"
|
|
_ "github.com/TecharoHQ/anubis/lib/checker/path"
|
|
_ "github.com/TecharoHQ/anubis/lib/checker/remoteaddress"
|
|
)
|