mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 19:31:06 +01:00
10 lines
163 B
Go
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
|
||
|
}
|