netbird/relay/auth/allow_all.go
Zoltán Papp 5be33d668b Add doc
2024-07-29 21:53:07 +02:00

11 lines
203 B
Go

package auth
// AllowAllAuth is a Validator that allows all connections.
// Used this for testing purposes only.
type AllowAllAuth struct {
}
func (a *AllowAllAuth) Validate(any) error {
return nil
}