Files
netbird/shared/relay/auth/allow/allow_all.go

11 lines
180 B
Go

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