mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 11:21:04 +01:00
11 lines
203 B
Go
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
|
|
}
|