prometheus-fail2ban-exporter/auth/provider.go
Markus Pesch 3998f9e2c2
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2023-10-02 12:50:34 +02:00

10 lines
101 B
Go

package auth
import (
"net/http"
)
type AuthProvider interface {
IsAllowed(*http.Request) bool
}