netbird/relay/auth/allow_all.go
2024-07-05 16:12:30 +02:00

10 lines
163 B
Go

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