mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-22 00:11:29 +02:00
11 lines
180 B
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
|
|
}
|